From: Peng Fan <peng.fan@xxxxxxx> The fsl,pins use uint32-matrix type, but the example is uint32-array, correct the example. Signed-off-by: Peng Fan <peng.fan@xxxxxxx> --- .../devicetree/bindings/pinctrl/fsl,scu-pinctrl.yaml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Documentation/devicetree/bindings/pinctrl/fsl,scu-pinctrl.yaml b/Documentation/devicetree/bindings/pinctrl/fsl,scu-pinctrl.yaml index 793e9e9cb597..0e817dedc7de 100644 --- a/Documentation/devicetree/bindings/pinctrl/fsl,scu-pinctrl.yaml +++ b/Documentation/devicetree/bindings/pinctrl/fsl,scu-pinctrl.yaml @@ -67,9 +67,8 @@ examples: compatible = "fsl,imx8qxp-iomuxc"; pinctrl_lpuart0: lpuart0grp { - fsl,pins = < - 111 0 0x06000020 - 112 0 0x06000020 - >; + fsl,pins = + <111 0 0x06000020>, + <112 0 0x06000020>; }; }; -- 2.25.1