On Wed, Dec 28, 2022 at 09:02:34PM +0100, Michał Grzelak wrote: > Running 'make dtbs_check' with schema in net/marvell,orion-mdio.yaml > gives the following warnings: > mdio-bus@72004: Unevaluated properties are not allowed > ('ethernet-phy' was unexpected) > arch/arm/boot/dts/dove-cubox.dtb > arch/arm/boot/dts/dove-cubox-es.dtb > arch/arm/boot/dts/dove-d2plug.dtb > arch/arm/boot/dts/dove-d2plug.dtb > arch/arm/boot/dts/dove-dove-db.dtb > arch/arm/boot/dts/dove-d3plug.dtb > arch/arm/boot/dts/dove-sbc-a510.dtb > Fix them by removing empty ethphy subnode from dove.dtsi and describe > PHY on the relevant board .dts files level. I don't think your description is correct. What i think is causing the problem is that the ethphy subnode in dove.dtsi does not have an @X. By moving it into the .dts file, you can then give it the correct @1, or @3, which makes the linter happy. The kernel itself does not care about this, it is an example of the linter being much more strict than the kernel. If you agree with me, please update the description. Andrew