On Tue, 2020-11-17 at 14:07 -0600, Rob Herring wrote: > 'additionalProperties' is now required by the meta-schema. Add it for > coda. As a result, 'interrupts', 'interrupt-names' and 'power-domains' > need to be reworked to be defined at the top level. > > Cc: Philipp Zabel <p.zabel@xxxxxxxxxxxxxx> > Cc: Mauro Carvalho Chehab <mchehab@xxxxxxxxxx> > Cc: linux-media@xxxxxxxxxxxxxxx > Signed-off-by: Rob Herring <robh@xxxxxxxxxx> > --- > .../devicetree/bindings/media/coda.yaml | 42 +++++++++---------- > 1 file changed, 21 insertions(+), 21 deletions(-) > > diff --git a/Documentation/devicetree/bindings/media/coda.yaml b/Documentation/devicetree/bindings/media/coda.yaml > index 7bac0057faf7..36781ee4617f 100644 > --- a/Documentation/devicetree/bindings/media/coda.yaml > +++ b/Documentation/devicetree/bindings/media/coda.yaml > @@ -44,6 +44,21 @@ properties: > - const: per > - const: ahb > > + interrupts: > + minItems: 1 > + items: > + - description: BIT processor interrupt > + - description: JPEG unit interrupt > + > + interrupt-names: > + minItems: 1 > + items: > + - const: bit > + - const: jpeg I understand this would require a property interrupt-names = "bit"; in the arch/arm/boot/dts/imx{27,51,53}.dtsi device trees. That property is currently not required nor present, with only one interrupt on those devices. Is it possible to set "minItems: 0"? regards Philipp