Skip to content
Snippets Groups Projects
Commit c164fa62 authored by Lee Jones's avatar Lee Jones
Browse files

ARM: ux500: Fix SSP register address format


SSP won't probe unless the specified register address format
is correct i.e. we have to specify that the address is in hex.
After this patch has been applied, the SSP (SPI) driver probes
as expected.

Acked-by: default avatarLinus Walleij <linus.walleij@linaro.org>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent 3cb920a1
No related branches found
No related tags found
No related merge requests found
......@@ -536,7 +536,7 @@ i2c@8012a000 {
ssp@80002000 {
compatible = "arm,pl022", "arm,primecell";
reg = <80002000 0x1000>;
reg = <0x80002000 0x1000>;
interrupts = <0 14 0x4>;
#address-cells = <1>;
#size-cells = <0>;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment