Commit d591640a authored by Linus Walleij's avatar Linus Walleij

ARM: ux500: fix clock for GPIO blocks 6 and 7

The clock assignment in the device tree for GPIO blocks 6
and 7 was incorrect, indicating this was managed by bit 1 on
PRCC 2 while it was in fact bit 11 on PRCC 2.
Acked-by: default avatarLee Jones <lee.jones@linaro.org>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent f5ff9a11
......@@ -197,7 +197,7 @@ gpio6: gpio@8011e000 {
#gpio-cells = <2>;
gpio-bank = <6>;
clocks = <&prcc_pclk 2 1>;
clocks = <&prcc_pclk 2 11>;
};
gpio7: gpio@8011e080 {
......@@ -212,7 +212,7 @@ gpio7: gpio@8011e080 {
#gpio-cells = <2>;
gpio-bank = <7>;
clocks = <&prcc_pclk 2 1>;
clocks = <&prcc_pclk 2 11>;
};
gpio8: gpio@a03fe000 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment