]> git.karo-electronics.de Git - karo-tx-linux.git/commit
pinctrl: sh-pfc: r8a7779: use PINMUX_IPSR_MSEL()
authorKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Thu, 3 Sep 2015 02:50:58 +0000 (02:50 +0000)
committerGeert Uytterhoeven <geert+renesas@glider.be>
Fri, 2 Oct 2015 07:54:38 +0000 (09:54 +0200)
commit759151401c9dc2e929b34c8d7d863c78c8240496
tree176300c48ad6a3cef1b45d2fee53eaa7618268a2
parentaf5132dd12c5a1fab0c2500168dfed2cbf6179b6
pinctrl: sh-pfc: r8a7779: 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-r8a7779.c