2023-07-13 16:10:56

by Krzysztof Kozlowski

[permalink] [raw]
Subject: [PATCH] ARM: dts: imx1-apf9328: correct ethernet reg addresses (split)

The davicom,dm9000 Ethernet Controller accepts two reg addresses.

Signed-off-by: Krzysztof Kozlowski <[email protected]>
---
arch/arm/boot/dts/nxp/imx/imx1-apf9328.dts | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/arch/arm/boot/dts/nxp/imx/imx1-apf9328.dts b/arch/arm/boot/dts/nxp/imx/imx1-apf9328.dts
index 77b21aa7a146..1f11e9542a72 100644
--- a/arch/arm/boot/dts/nxp/imx/imx1-apf9328.dts
+++ b/arch/arm/boot/dts/nxp/imx/imx1-apf9328.dts
@@ -58,10 +58,8 @@ eth: eth@4,c00000 {
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_eth>;
compatible = "davicom,dm9000";
- reg = <
- 4 0x00c00000 0x2
- 4 0x00c00002 0x2
- >;
+ reg = <4 0x00c00000 0x2>,
+ <4 0x00c00002 0x2>;
interrupt-parent = <&gpio2>;
interrupts = <14 IRQ_TYPE_LEVEL_LOW>;
fsl,weim-cs-timing = <0x0000c700 0x19190d01>;
--
2.34.1



2023-07-19 07:04:05

by Shawn Guo

[permalink] [raw]
Subject: Re: [PATCH] ARM: dts: imx1-apf9328: correct ethernet reg addresses (split)

On Thu, Jul 13, 2023 at 05:29:46PM +0200, Krzysztof Kozlowski wrote:
> The davicom,dm9000 Ethernet Controller accepts two reg addresses.
>
> Signed-off-by: Krzysztof Kozlowski <[email protected]>

Applied, thanks!