Message ID | 20211109053334.1840273-7-hsinyi@chromium.org (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [v2,1/7] arm64: dts: mt8183: jacuzzi: remove unused ddc-i2c-bus | expand |
On Tue, 09 Nov 2021 13:33:34 +0800, Hsin-Yi Wang wrote: > Add sku22 which uses different audio codec than previous kakadu board. > > Signed-off-by: Hsin-Yi Wang <hsinyi@chromium.org> > --- > v2: fix compatible items matching > --- > Documentation/devicetree/bindings/arm/mediatek.yaml | 9 +++++++-- > 1 file changed, 7 insertions(+), 2 deletions(-) > My bot found errors running 'make DT_CHECKER_FLAGS=-m dt_binding_check' on your patch (DT_CHECKER_FLAGS is new in v5.13): yamllint warnings/errors: dtschema/dtc warnings/errors: /builds/robherring/linux-dt-review/Documentation/devicetree/bindings/arm/mediatek.yaml: properties:compatible:oneOf:27:items: 'oneOf' conditional failed, one must be fixed: [{'oneOf': [{'items': [{'const': 'google,kakadu-rev3-sku22'}, {'const': 'google,kakadu-rev2-sku22'}]}, {'items': [{'const': 'google,kakadu-rev3'}, {'const': 'google,kakadu-rev2'}]}]}, {'const': 'google,kakadu'}, {'const': 'mediatek,mt8183'}] is not of type 'object' Additional properties are not allowed ('oneOf' was unexpected) from schema $id: http://devicetree.org/meta-schemas/string-array.yaml# /builds/robherring/linux-dt-review/Documentation/devicetree/bindings/arm/mediatek.yaml: ignoring, error in schema: properties: compatible: oneOf: 27: items warning: no schema found in file: ./Documentation/devicetree/bindings/arm/mediatek.yaml doc reference errors (make refcheckdocs): See https://patchwork.ozlabs.org/patch/1552630 This check can fail if there are any dependencies. The base for a patch series is generally the most recent rc1. If you already ran 'make dt_binding_check' and didn't see the above error(s), then make sure 'yamllint' is installed and dt-schema is up to date: pip3 install dtschema --upgrade Please check and re-submit.
diff --git a/Documentation/devicetree/bindings/arm/mediatek.yaml b/Documentation/devicetree/bindings/arm/mediatek.yaml index 99e7f8e294cd03..d08f0fcbbe12ae 100644 --- a/Documentation/devicetree/bindings/arm/mediatek.yaml +++ b/Documentation/devicetree/bindings/arm/mediatek.yaml @@ -161,8 +161,13 @@ properties: - const: mediatek,mt8183 - description: Google Kakadu (ASUS Chromebook Detachable CM3) items: - - const: google,kakadu-rev3 - - const: google,kakadu-rev2 + - oneOf: + - items: + - const: google,kakadu-rev3-sku22 + - const: google,kakadu-rev2-sku22 + - items: + - const: google,kakadu-rev3 + - const: google,kakadu-rev2 - const: google,kakadu - const: mediatek,mt8183 - description: Google Kappa (HP Chromebook 11a)
Add sku22 which uses different audio codec than previous kakadu board. Signed-off-by: Hsin-Yi Wang <hsinyi@chromium.org> --- v2: fix compatible items matching --- Documentation/devicetree/bindings/arm/mediatek.yaml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-)