Skip to content

Commit

Permalink
ARM: ux500: fix clock for GPIO blocks 6 and 7
Browse files Browse the repository at this point in the history
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: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
  • Loading branch information
Linus Walleij committed Oct 18, 2013
1 parent f5ff9a1 commit d591640
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/boot/dts/ste-dbx5x0.dtsi
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@
#gpio-cells = <2>;
gpio-bank = <6>;

clocks = <&prcc_pclk 2 1>;
clocks = <&prcc_pclk 2 11>;
};

gpio7: gpio@8011e080 {
Expand All @@ -212,7 +212,7 @@
#gpio-cells = <2>;
gpio-bank = <7>;

clocks = <&prcc_pclk 2 1>;
clocks = <&prcc_pclk 2 11>;
};

gpio8: gpio@a03fe000 {
Expand Down

0 comments on commit d591640

Please sign in to comment.