diff options
author | Krzysztof Kozlowski <[email protected]> | 2023-07-13 17:29:13 +0200 |
---|---|---|
committer | Krzysztof Kozlowski <[email protected]> | 2023-09-24 20:43:46 +0200 |
commit | 33d6227fcd1a8b68bf8d5e68f69a931dc87eac81 (patch) | |
tree | 12e5bafb95b8a2a998d78d53eb090b4a78483f88 | |
parent | 0bb80ecc33a8fb5a682236443c1e740d5c917d1d (diff) |
ARM: dts: omap3-devkit8000: correct ethernet reg addresses (split)
The davicom,dm9000 Ethernet Controller accepts two reg addresses.
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Krzysztof Kozlowski <[email protected]>
-rw-r--r-- | arch/arm/boot/dts/ti/omap/omap3-devkit8000-common.dtsi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/ti/omap/omap3-devkit8000-common.dtsi b/arch/arm/boot/dts/ti/omap/omap3-devkit8000-common.dtsi index 3b9838f1bb6b..07d5894ebb74 100644 --- a/arch/arm/boot/dts/ti/omap/omap3-devkit8000-common.dtsi +++ b/arch/arm/boot/dts/ti/omap/omap3-devkit8000-common.dtsi @@ -275,8 +275,8 @@ ethernet@6,0 { compatible = "davicom,dm9000"; - reg = <6 0x000 2 - 6 0x400 2>; /* CS6, offset 0 and 0x400, IO size 2 */ + reg = <6 0x000 2>, + <6 0x400 2>; /* CS6, offset 0 and 0x400, IO size 2 */ bank-width = <2>; interrupt-parent = <&gpio1>; interrupts = <25 IRQ_TYPE_LEVEL_LOW>; |