Message ID | 20230721111020.1234278-1-alexander.stein@ew.tq-group.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | [1/3] dt-bindings: media: amphion: Fix subnode pattern | expand |
On Fri, 21 Jul 2023 13:10:18 +0200, Alexander Stein wrote: > DT nodes use dashes instead of underscore. Adjust pattern to also fix > warnings regarding nodes in arch/arm64/boot/dts/freescale/imx8-ss-vpu.dtsi > > Fixes: 38ad8b32f3af ("dt-bindings: media: amphion: add amphion video codec bindings") > Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com> > --- > Documentation/devicetree/bindings/media/amphion,vpu.yaml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > 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/dt-review-ci/linux/Documentation/devicetree/bindings/media/amphion,vpu.example.dtb: vpu@2c000000: 'vpu_core@2d080000', 'vpu_core@2d090000', 'vpu_core@2d0a0000' do not match any of the regexes: '^mailbox@[0-9a-f]+$', '^vpu-core@[0-9a-f]+$', 'pinctrl-[0-9]+' from schema $id: http://devicetree.org/schemas/media/amphion,vpu.yaml# doc reference errors (make refcheckdocs): See https://patchwork.ozlabs.org/project/devicetree-bindings/patch/20230721111020.1234278-1-alexander.stein@ew.tq-group.com The base for the series is generally the latest rc1. A different dependency should be noted in *this* patch. 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 after running the above command yourself. Note that DT_SCHEMA_FILES can be set to your schema file to speed up checking your schema. However, it must be unset to test all examples with your schema.
On Fri, Jul 21, 2023 at 01:10:18PM +0200, Alexander Stein wrote: > DT nodes use dashes instead of underscore. Adjust pattern to also fix > warnings regarding nodes in arch/arm64/boot/dts/freescale/imx8-ss-vpu.dtsi > > Fixes: 38ad8b32f3af ("dt-bindings: media: amphion: add amphion video codec bindings") > Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com> > --- > Documentation/devicetree/bindings/media/amphion,vpu.yaml | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Documentation/devicetree/bindings/media/amphion,vpu.yaml b/Documentation/devicetree/bindings/media/amphion,vpu.yaml > index a9d80eaeeeb6..90d273b9fdd7 100644 > --- a/Documentation/devicetree/bindings/media/amphion,vpu.yaml > +++ b/Documentation/devicetree/bindings/media/amphion,vpu.yaml > @@ -47,7 +47,7 @@ patternProperties: > $ref: ../mailbox/fsl,mu.yaml# > > > - "^vpu_core@[0-9a-f]+$": > + "^vpu-core@[0-9a-f]+$": > description: > Each core correspond a decoder or encoder, need to configure them > separately. NXP i.MX8QM SoC has one decoder and two encoder, i.MX8QXP SoC Per the bot, you have some examples you need to update as a result. Thanks, Conor.
On Fri, 21 Jul 2023 13:10:18 +0200, Alexander Stein wrote: > DT nodes use dashes instead of underscore. Adjust pattern to also fix > warnings regarding nodes in arch/arm64/boot/dts/freescale/imx8-ss-vpu.dtsi > > Applied to https://git.kernel.org/pub/scm/linux/kernel/git/broonie/spi.git for-next Thanks! [2/3] dt-bindings: lpspi: Add power-domains commit: 49aa77165c00e5047b17b0072bbb41cc83a9f197 All being well this means that it will be integrated into the linux-next tree (usually sometime in the next 24 hours) and sent to Linus during the next merge window (or sooner if it is a bug fix), however if problems are discovered then the patch may be dropped or reverted. You may get further e-mails resulting from automated or manual testing and review of the tree, please engage with people reporting problems and send followup patches addressing any issues that are reported if needed. If any updates are required or you are submitting further changes they should be sent as incremental updates against current git, existing patches will not be replaced. Please add any relevant lists and maintainers to the CCs when replying to this mail. Thanks, Mark
diff --git a/Documentation/devicetree/bindings/media/amphion,vpu.yaml b/Documentation/devicetree/bindings/media/amphion,vpu.yaml index a9d80eaeeeb6..90d273b9fdd7 100644 --- a/Documentation/devicetree/bindings/media/amphion,vpu.yaml +++ b/Documentation/devicetree/bindings/media/amphion,vpu.yaml @@ -47,7 +47,7 @@ patternProperties: $ref: ../mailbox/fsl,mu.yaml# - "^vpu_core@[0-9a-f]+$": + "^vpu-core@[0-9a-f]+$": description: Each core correspond a decoder or encoder, need to configure them separately. NXP i.MX8QM SoC has one decoder and two encoder, i.MX8QXP SoC
DT nodes use dashes instead of underscore. Adjust pattern to also fix warnings regarding nodes in arch/arm64/boot/dts/freescale/imx8-ss-vpu.dtsi Fixes: 38ad8b32f3af ("dt-bindings: media: amphion: add amphion video codec bindings") Signed-off-by: Alexander Stein <alexander.stein@ew.tq-group.com> --- Documentation/devicetree/bindings/media/amphion,vpu.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)