Skip to content

Commit fd274b7

Browse files
chunkeeyffainelli
authored andcommitted
ARM: dts: BCM5301X: fix 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: 935327a ("ARM: dts: BCM5301X: Add DT for Meraki MR26") Fixes: ec88a9c ("ARM: BCM5301X: Add DT for Meraki MR32") Signed-off-by: Christian Lamparter <chunkeey@gmail.com> Link: https://lore.kernel.org/r/50522f45566951a9eabd22820647924cc6b4a264.1686238550.git.chunkeey@gmail.com Signed-off-by: Florian Fainelli <florian.fainelli@broadcom.com>
1 parent d68b2f7 commit fd274b7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

arch/arm/boot/dts/bcm53015-meraki-mr26.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121

122122
fixed-link {
123123
speed = <1000>;
124-
duplex-full;
124+
full-duplex;
125125
};
126126
};
127127
};

arch/arm/boot/dts/bcm53016-meraki-mr32.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@
182182

183183
fixed-link {
184184
speed = <1000>;
185-
duplex-full;
185+
full-duplex;
186186
};
187187
};
188188
};

0 commit comments

Comments
 (0)