diff options
author | Kunihiko Hayashi <hayashi.kunihiko@socionext.com> | 2017-08-28 11:21:26 +0900 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2017-08-31 15:50:06 +0200 |
commit | 12219fd2bf5304293f5cf014cbc2e6bfdfcab7b5 (patch) | |
tree | 88dbfb8f907482f00dc9abb2282b53772c2e42ef /drivers/pinctrl | |
parent | 9b21e72e8ce7f70f53f3cc3d2d47568e7f6029d2 (diff) | |
download | talos-obmc-linux-12219fd2bf5304293f5cf014cbc2e6bfdfcab7b5.tar.gz talos-obmc-linux-12219fd2bf5304293f5cf014cbc2e6bfdfcab7b5.zip |
pinctrl: uniphier: fix members of rmii group for Pro4
The ether_rmii_groups should have "ether_rmii" and "ether_rmiib" as
members. This patch replaces to them.
Fixes: 1e359ab1285e ("pinctrl: uniphier: add Ethernet pin-mux settings")
Signed-off-by: Kunihiko Hayashi <hayashi.kunihiko@socionext.com>
Acked-by: Masahiro Yamada <yamada.masahiro@socionext.com>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'drivers/pinctrl')
-rw-r--r-- | drivers/pinctrl/uniphier/pinctrl-uniphier-pro4.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/pinctrl/uniphier/pinctrl-uniphier-pro4.c b/drivers/pinctrl/uniphier/pinctrl-uniphier-pro4.c index ed46d110f946..603204a00213 100644 --- a/drivers/pinctrl/uniphier/pinctrl-uniphier-pro4.c +++ b/drivers/pinctrl/uniphier/pinctrl-uniphier-pro4.c @@ -1159,7 +1159,7 @@ static const struct uniphier_pinctrl_group uniphier_pro4_groups[] = { static const char * const emmc_groups[] = {"emmc", "emmc_dat8"}; static const char * const ether_mii_groups[] = {"ether_mii"}; static const char * const ether_rgmii_groups[] = {"ether_rgmii"}; -static const char * const ether_rmii_groups[] = {"ether_rgmii", "ether_rgmiib"}; +static const char * const ether_rmii_groups[] = {"ether_rmii", "ether_rmiib"}; static const char * const i2c0_groups[] = {"i2c0"}; static const char * const i2c1_groups[] = {"i2c1"}; static const char * const i2c2_groups[] = {"i2c2"}; |