]> git.baikalelectronics.ru Git - kernel.git/commit
pinctrl: sh-pfc: sh7734: use PINMUX_IPSR_MSEL()
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Thu, 3 Sep 2015 02:49:36 +0000 (02:49 +0000)
committerGeert Uytterhoeven <geert+renesas@glider.be>
Fri, 2 Oct 2015 07:54:36 +0000 (09:54 +0200)
commit9a11e342dd0298905f6620a065df3c31883e2e14
treea593d97b3632aef642c1a22728217bbae4baa15e
parent67fbbca315e2fcdc8ce7f6633103b4a80199d123
pinctrl: sh-pfc: sh7734: use PINMUX_IPSR_MSEL()

Now, PINMUX_IPSR_MSEL() and PINMUX_IPSR_MODSEL_DATA() are same.

Current PFC driver is very difficult to read, because macro names are
using different length.

PINMUX_IPSR_NOGP(ispr, ...)
PINMUX_IPSR_DATA(ipsr, ...)
PINMUX_IPSR_NOGM(ispr, ...)
PINMUX_IPSR_NOFN(ipsr, ...)
PINMUX_IPSR_MSEL(ipsr, ...)
PINMUX_IPSR_MODSEL_DATA(ipsr, ...)

It can be readable if we can use PINMUX_IPSR_MSEL() instead
of PINMUX_IPSR_MODSEL_DATA()

PINMUX_IPSR_NOGP(ispr, ...)
PINMUX_IPSR_DATA(ipsr, ...)
PINMUX_IPSR_NOGM(ispr, ...)
PINMUX_IPSR_NOFN(ipsr, ...)
PINMUX_IPSR_MSEL(ipsr, ...)

Signed-off-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
drivers/pinctrl/sh-pfc/pfc-sh7734.c