On Wed, Mar 11, 2020 at 04:00:01PM -0500, Rob Herring wrote: > Extra dtc warnings (roughly what W=1 enables) are now enabled by default > when building the binding examples. These were fixed treewide in > 5.6-rc5, but some new display bindings have been added with new > warnings: > > Documentation/devicetree/bindings/display/panel/raydium,rm68200.example.dts:17.7-27.11: Warning (unit_address_vs_reg): /example-0/dsi@0: node has a unit name, but no reg property > Documentation/devicetree/bindings/display/panel/panel-simple-dsi.example.dts:17.19-31.11: Warning (unit_address_vs_reg): /example-0/mdss_dsi@fd922800: node has a unit name, but no reg property > Documentation/devicetree/bindings/display/panel/orisetech,otm8009a.example.dts:17.7-26.11: Warning (unit_address_vs_reg): /example-0/dsi@0: node has a unit name, but no reg property > Documentation/devicetree/bindings/display/ti/ti,am65x-dss.example.dts:21.27-49.11: Warning (unit_address_format): /example-0/dss@04a00000: unit name should not have leading 0s > Documentation/devicetree/bindings/display/ti/ti,j721e-dss.example.dts:21.27-72.11: Warning (unit_address_format): /example-0/dss@04a00000: unit name should not have leading 0s > Documentation/devicetree/bindings/display/ti/ti,k2g-dss.example.dts:20.27-42.11: Warning (unit_address_format): /example-0/dss@02540000: unit name should not have leading 0s > > Cc: Thierry Reding <thierry.reding@xxxxxxxxx> > Cc: Sam Ravnborg <sam@xxxxxxxxxxxx> > Cc: Jyri Sarha <jsarha@xxxxxx> > Cc: Tomi Valkeinen <tomi.valkeinen@xxxxxx> > Signed-off-by: Rob Herring <robh@xxxxxxxxxx> Reviewed-by: Sam Ravnborg <sam@xxxxxxxxxxxx> And I can drop my patch that only fixed the panel/ parts - good. Sam > --- > .../devicetree/bindings/display/panel/orisetech,otm8009a.yaml | 3 +-- > .../devicetree/bindings/display/panel/panel-simple-dsi.yaml | 2 +- > .../devicetree/bindings/display/panel/raydium,rm68200.yaml | 2 +- > Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml | 2 +- > Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml | 2 +- > Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml | 2 +- > 6 files changed, 6 insertions(+), 7 deletions(-) > > diff --git a/Documentation/devicetree/bindings/display/panel/orisetech,otm8009a.yaml b/Documentation/devicetree/bindings/display/panel/orisetech,otm8009a.yaml > index 6e6ac995c27b..2e7c65b093d7 100644 > --- a/Documentation/devicetree/bindings/display/panel/orisetech,otm8009a.yaml > +++ b/Documentation/devicetree/bindings/display/panel/orisetech,otm8009a.yaml > @@ -39,7 +39,7 @@ required: > > examples: > - | > - dsi@0 { > + dsi { > #address-cells = <1>; > #size-cells = <0>; > panel@0 { > @@ -50,4 +50,3 @@ examples: > }; > }; > ... > - > diff --git a/Documentation/devicetree/bindings/display/panel/panel-simple-dsi.yaml b/Documentation/devicetree/bindings/display/panel/panel-simple-dsi.yaml > index 8b60368a2425..b2e8742fd6af 100644 > --- a/Documentation/devicetree/bindings/display/panel/panel-simple-dsi.yaml > +++ b/Documentation/devicetree/bindings/display/panel/panel-simple-dsi.yaml > @@ -50,7 +50,7 @@ required: > > examples: > - | > - mdss_dsi@fd922800 { > + dsi { > #address-cells = <1>; > #size-cells = <0>; > panel@0 { > diff --git a/Documentation/devicetree/bindings/display/panel/raydium,rm68200.yaml b/Documentation/devicetree/bindings/display/panel/raydium,rm68200.yaml > index 09149f140d5f..a35ba16fc000 100644 > --- a/Documentation/devicetree/bindings/display/panel/raydium,rm68200.yaml > +++ b/Documentation/devicetree/bindings/display/panel/raydium,rm68200.yaml > @@ -42,7 +42,7 @@ required: > > examples: > - | > - dsi@0 { > + dsi { > #address-cells = <1>; > #size-cells = <0>; > panel@0 { > diff --git a/Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml b/Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml > index cac61a998203..aa5543a64526 100644 > --- a/Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml > +++ b/Documentation/devicetree/bindings/display/ti/ti,am65x-dss.yaml > @@ -121,7 +121,7 @@ examples: > #include <dt-bindings/interrupt-controller/irq.h> > #include <dt-bindings/soc/ti,sci_pm_domain.h> > > - dss: dss@04a00000 { > + dss: dss@4a00000 { > compatible = "ti,am65x-dss"; > reg = <0x0 0x04a00000 0x0 0x1000>, /* common */ > <0x0 0x04a02000 0x0 0x1000>, /* vidl1 */ > diff --git a/Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml b/Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml > index ade9b2f513f5..6d47cd7206c2 100644 > --- a/Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml > +++ b/Documentation/devicetree/bindings/display/ti/ti,j721e-dss.yaml > @@ -154,7 +154,7 @@ examples: > #include <dt-bindings/interrupt-controller/irq.h> > #include <dt-bindings/soc/ti,sci_pm_domain.h> > > - dss: dss@04a00000 { > + dss: dss@4a00000 { > compatible = "ti,j721e-dss"; > reg = <0x00 0x04a00000 0x00 0x10000>, /* common_m */ > <0x00 0x04a10000 0x00 0x10000>, /* common_s0*/ > diff --git a/Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml b/Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml > index 385bd060ccf9..7cb37053e95b 100644 > --- a/Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml > +++ b/Documentation/devicetree/bindings/display/ti/ti,k2g-dss.yaml > @@ -81,7 +81,7 @@ examples: > #include <dt-bindings/interrupt-controller/arm-gic.h> > #include <dt-bindings/interrupt-controller/irq.h> > > - dss: dss@02540000 { > + dss: dss@2540000 { > compatible = "ti,k2g-dss"; > reg = <0x02540000 0x400>, > <0x02550000 0x1000>, > -- > 2.20.1