Latest linux-next doesn't build due to the following error: Error: Documentation/devicetree/bindings/pwm/allwinner,sun4i-a10-pwm.example.dts:35.37-38 syntax error FATAL ERROR: Unable to parse input tree make[1]: *** [Documentation/devicetree/bindings/pwm/allwinner,sun4i-a10-pwm.example.dt.yaml] Error 1 This is due to missing header in the device-tree yaml example. Fix this by adding the missing headers. Fixes: 4ee929b3f08e ("dt-bindings: pwm: allwinner: Add H6 PWM description") Reported-by: Rob Herring <robh+dt@xxxxxxxxxx> Signed-off-by: Clément Péron <peron.clem@xxxxxxxxx> --- .../devicetree/bindings/pwm/allwinner,sun4i-a10-pwm.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/devicetree/bindings/pwm/allwinner,sun4i-a10-pwm.yaml b/Documentation/devicetree/bindings/pwm/allwinner,sun4i-a10-pwm.yaml index a7dc19fc347a..fab89f052450 100644 --- a/Documentation/devicetree/bindings/pwm/allwinner,sun4i-a10-pwm.yaml +++ b/Documentation/devicetree/bindings/pwm/allwinner,sun4i-a10-pwm.yaml @@ -93,6 +93,9 @@ examples: }; - | + #include <dt-bindings/clock/sun50i-h6-ccu.h> + #include <dt-bindings/reset/sun50i-h6-ccu.h> + pwm@300a000 { compatible = "allwinner,sun50i-h6-pwm"; reg = <0x0300a000 0x400>; -- 2.20.1