diff options
author | Boris Brezillon <boris.brezillon@free-electrons.com> | 2014-12-03 12:32:09 +0100 |
---|---|---|
committer | Nicolas Ferre <nicolas.ferre@atmel.com> | 2015-03-11 15:47:02 +0100 |
commit | ea1c98b33622bd60b35e242dc77344cc2d000a1b (patch) | |
tree | 6e7529f7036300979d07bd78912c4f92f73e300b | |
parent | 05d6a0884729f808b881e88affe1700fe45aab56 (diff) | |
download | op-kernel-dev-ea1c98b33622bd60b35e242dc77344cc2d000a1b.zip op-kernel-dev-ea1c98b33622bd60b35e242dc77344cc2d000a1b.tar.gz |
ARM: at91/dt: declare matrix node as a syscon device
There is no specific driver handling the AHB matrix, this is a simple syscon
device. the matrix is needed by several other drivers including the USB on some
SoCs (at91sam9261 for instance).
Without this definition, the USB will not work on these SoCs.
Signed-off-by: Boris Brezillon <boris.brezillon@free-electrons.com>
Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>
-rw-r--r-- | arch/arm/boot/dts/at91sam9261.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/at91sam9261.dtsi b/arch/arm/boot/dts/at91sam9261.dtsi index 115b332..ad607ef 100644 --- a/arch/arm/boot/dts/at91sam9261.dtsi +++ b/arch/arm/boot/dts/at91sam9261.dtsi @@ -262,7 +262,7 @@ }; matrix: matrix@ffffee00 { - compatible = "atmel,at91sam9260-bus-matrix"; + compatible = "atmel,at91sam9260-bus-matrix", "syscon"; reg = <0xffffee00 0x200>; }; |