diff options
author | Lee Jones <lee.jones@linaro.org> | 2012-09-07 12:09:34 +0100 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2012-09-20 12:32:47 +0200 |
commit | c164fa62b93782165f12c0e8366f7b46507edb4d (patch) | |
tree | af5b4c4a05bcadd46e6509b45e2bfd6d6a16c8b8 /arch/arm/boot/dts/dbx5x0.dtsi | |
parent | 3cb920a15126be91de38d22d902e9cb18d3fbe49 (diff) | |
download | lwn-c164fa62b93782165f12c0e8366f7b46507edb4d.tar.gz lwn-c164fa62b93782165f12c0e8366f7b46507edb4d.zip |
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: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Diffstat (limited to 'arch/arm/boot/dts/dbx5x0.dtsi')
-rw-r--r-- | arch/arm/boot/dts/dbx5x0.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/dbx5x0.dtsi b/arch/arm/boot/dts/dbx5x0.dtsi index 3708a6ba7ed3..748ba7aa746c 100644 --- a/arch/arm/boot/dts/dbx5x0.dtsi +++ b/arch/arm/boot/dts/dbx5x0.dtsi @@ -536,7 +536,7 @@ ssp@80002000 { compatible = "arm,pl022", "arm,primecell"; - reg = <80002000 0x1000>; + reg = <0x80002000 0x1000>; interrupts = <0 14 0x4>; #address-cells = <1>; #size-cells = <0>; |