On 21/05/2025 04:15, Rosen Penev wrote: > Now that OF ahb support was added to the ath9k driver, we can use it to > enable and use the SoC wireless found in these chipsets. > > Signed-off-by: Rosen Penev <rosenp@xxxxxxxxx> > --- > arch/mips/boot/dts/qca/ar9132.dtsi | 9 +++++++++ > arch/mips/boot/dts/qca/ar9132_tl_wr1043nd_v1.dts | 4 ++++ > arch/mips/boot/dts/qca/ar9331.dtsi | 9 +++++++++ > arch/mips/boot/dts/qca/ar9331_dpt_module.dts | 4 ++++ > arch/mips/boot/dts/qca/ar9331_dragino_ms14.dts | 4 ++++ > arch/mips/boot/dts/qca/ar9331_omega.dts | 4 ++++ > .../mips/boot/dts/qca/ar9331_openembed_som9331_board.dts | 4 ++++ > arch/mips/boot/dts/qca/ar9331_tl_mr3020.dts | 4 ++++ > 8 files changed, 42 insertions(+) > > diff --git a/arch/mips/boot/dts/qca/ar9132.dtsi b/arch/mips/boot/dts/qca/ar9132.dtsi > index 61dcfa5b6ca7..dc94459aa3e9 100644 > --- a/arch/mips/boot/dts/qca/ar9132.dtsi > +++ b/arch/mips/boot/dts/qca/ar9132.dtsi > @@ -156,6 +156,15 @@ spi: spi@1f000000 { > #address-cells = <1>; > #size-cells = <0>; > }; > + > + wmac: wmac@180c0000 { The name is enforced by bindings now (if you tested that). It's wifi. It does not look like you tested the DTS against bindings. Please run `make dtbs_check W=1` (see Documentation/devicetree/bindings/writing-schema.rst or https://www.linaro.org/blog/tips-and-tricks-for-validating-devicetree-sources-with-the-devicetree-schema/ for instructions). Maybe you need to update your dtschema and yamllint. Don't rely on distro packages for dtschema and be sure you are using the latest released dtschema. Please run scripts/checkpatch.pl on the patches and fix reported warnings. After that, run also 'scripts/checkpatch.pl --strict' on the patches and (probably) fix more warnings. Some warnings can be ignored, especially from --strict run, but the code here looks like it needs a fix. Feel free to get in touch if the warning is not clear. Best regards, Krzysztof