Message ID | 50522f45566951a9eabd22820647924cc6b4a264.1686238550.git.chunkeey@gmail.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [v2,1/3] ARM: dts: BCM5301X: MR26: MR32: remove bogus nand-ecc-algo property | expand |
From: Florian Fainelli <f.fainelli@gmail.com> On Thu, 8 Jun 2023 17:36:29 +0200, Christian Lamparter <chunkeey@gmail.com> wrote: > this typo was found by the dtbs_check > | ports:port@5:fixed-link: 'oneOf' conditional failed, > | {'speed': [[1000]], 'duplex-full': True} is not of type 'array' > | 'duplex-full' does not match any of the regexes: 'pinctrl-[0-]..." > > this should have been full-duplex; > > Fixes: 935327a73553 ("ARM: dts: BCM5301X: Add DT for Meraki MR26") > Fixes: ec88a9c344d9 ("ARM: BCM5301X: Add DT for Meraki MR32") > Signed-off-by: Christian Lamparter <chunkeey@gmail.com> > --- Applied to https://github.com/Broadcom/stblinux/commits/devicetree/next, thanks! -- Florian
diff --git a/arch/arm/boot/dts/bcm53015-meraki-mr26.dts b/arch/arm/boot/dts/bcm53015-meraki-mr26.dts index 83d1b6e0b0d5..f79378bea7cd 100644 --- a/arch/arm/boot/dts/bcm53015-meraki-mr26.dts +++ b/arch/arm/boot/dts/bcm53015-meraki-mr26.dts @@ -124,7 +124,7 @@ port@5 { fixed-link { speed = <1000>; - duplex-full; + full-duplex; }; }; }; diff --git a/arch/arm/boot/dts/bcm53016-meraki-mr32.dts b/arch/arm/boot/dts/bcm53016-meraki-mr32.dts index e61f77a10e49..eacaba398cc6 100644 --- a/arch/arm/boot/dts/bcm53016-meraki-mr32.dts +++ b/arch/arm/boot/dts/bcm53016-meraki-mr32.dts @@ -185,7 +185,7 @@ port@5 { fixed-link { speed = <1000>; - duplex-full; + full-duplex; }; }; };
this typo was found by the dtbs_check | ports:port@5:fixed-link: 'oneOf' conditional failed, | {'speed': [[1000]], 'duplex-full': True} is not of type 'array' | 'duplex-full' does not match any of the regexes: 'pinctrl-[0-]..." this should have been full-duplex; Fixes: 935327a73553 ("ARM: dts: BCM5301X: Add DT for Meraki MR26") Fixes: ec88a9c344d9 ("ARM: BCM5301X: Add DT for Meraki MR32") Signed-off-by: Christian Lamparter <chunkeey@gmail.com> --- v1 -> v2: - added tags - removed hunks that are fixed by previous patches - rebased on top of stblinux devicetree/next --- arch/arm/boot/dts/bcm53015-meraki-mr26.dts | 2 +- arch/arm/boot/dts/bcm53016-meraki-mr32.dts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-)