Message ID | 20220607155028.42029-1-stefan.wahren@i2se.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | ARM: dts: bcm283x: Drop unnecessary properties from dpi node | expand |
On Tue, 7 Jun 2022 17:50:28 +0200, Stefan Wahren <stefan.wahren@i2se.com> wrote: > Since commit 094536003e06 ("dt-bindings: display: Convert > VC4 bindings to schemas") it has been defined that the properties > '#address-cells' and '#size-cells' are not necessary for the dpi > node. This results in a warning during dtbs_check: > > dpi@7e208000: '#address-cells', '#size-cells' do not match any > of the regexes: 'pinctrl-[0-9]+' > > Since we don't need a reg property to differentiate between > multiple ports, drop them from the dtsi file. > > Suggested-by: Maxime Ripard <maxime@cerno.tech> > Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com> > --- Applied to https://github.com/Broadcom/stblinux/commits/devicetree/next, thanks! -- Florian
diff --git a/arch/arm/boot/dts/bcm283x.dtsi b/arch/arm/boot/dts/bcm283x.dtsi index c113661a6668..6f99b70e1db0 100644 --- a/arch/arm/boot/dts/bcm283x.dtsi +++ b/arch/arm/boot/dts/bcm283x.dtsi @@ -352,8 +352,6 @@ dpi: dpi@7e208000 { clocks = <&clocks BCM2835_CLOCK_VPU>, <&clocks BCM2835_CLOCK_DPI>; clock-names = "core", "pixel"; - #address-cells = <1>; - #size-cells = <0>; status = "disabled"; };
Since commit 094536003e06 ("dt-bindings: display: Convert VC4 bindings to schemas") it has been defined that the properties '#address-cells' and '#size-cells' are not necessary for the dpi node. This results in a warning during dtbs_check: dpi@7e208000: '#address-cells', '#size-cells' do not match any of the regexes: 'pinctrl-[0-9]+' Since we don't need a reg property to differentiate between multiple ports, drop them from the dtsi file. Suggested-by: Maxime Ripard <maxime@cerno.tech> Signed-off-by: Stefan Wahren <stefan.wahren@i2se.com> --- arch/arm/boot/dts/bcm283x.dtsi | 2 -- 1 file changed, 2 deletions(-)