diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2015-09-21 16:27:23 +0200 |
---|---|---|
committer | Geert Uytterhoeven <geert+renesas@glider.be> | 2015-10-20 16:03:30 +0200 |
commit | b8b47d678a5f0b5826044242780a988f8af50b22 (patch) | |
tree | 2d317a8d65cbccd0890655348788602ad183282f /drivers/pinctrl/sh-pfc/pfc-r8a7778.c | |
parent | ae7465a0972aee889d79d94dbd1e65d3fab07414 (diff) | |
download | blackbird-op-linux-b8b47d678a5f0b5826044242780a988f8af50b22.tar.gz blackbird-op-linux-b8b47d678a5f0b5826044242780a988f8af50b22.zip |
pinctrl: sh-pfc: Rename .gpio_data[] to .pinmux_data[]
The sh_pfc_soc_info.gpio_data[] array contains not only GPIO data, but
also various other pinmux-related data (functions and marks).
Every single driver already calls its local array pinmux_data[].
Hence rename the sh_pfc_soc_info member to "pinmux_data".
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Acked-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Diffstat (limited to 'drivers/pinctrl/sh-pfc/pfc-r8a7778.c')
-rw-r--r-- | drivers/pinctrl/sh-pfc/pfc-r8a7778.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/pinctrl/sh-pfc/pfc-r8a7778.c b/drivers/pinctrl/sh-pfc/pfc-r8a7778.c index 1a4e851ef4c3..f35a3fc4a5bb 100644 --- a/drivers/pinctrl/sh-pfc/pfc-r8a7778.c +++ b/drivers/pinctrl/sh-pfc/pfc-r8a7778.c @@ -3144,6 +3144,6 @@ const struct sh_pfc_soc_info r8a7778_pinmux_info = { .cfg_regs = pinmux_config_regs, - .gpio_data = pinmux_data, - .gpio_data_size = ARRAY_SIZE(pinmux_data), + .pinmux_data = pinmux_data, + .pinmux_data_size = ARRAY_SIZE(pinmux_data), }; |