Skip to content
This repository was archived by the owner on Oct 31, 2024. It is now read-only.

Commit 9373eaf

Browse files
krzkgregkh
authored andcommitted
ARM: dts: imx6ull-seeed-npi: fix fsl,pins property in tscgrp pinctrl
commit 3dedd48 upstream. The property is "fsl,pins", not "fsl,pin". Wrong property means the pin configuration was not applied. Fixes dtbs_check warnings: imx6ull-seeed-npi-dev-board-emmc.dtb: pinctrl@20e0000: uart1grp: 'fsl,pins' is a required property imx6ull-seeed-npi-dev-board-emmc.dtb: pinctrl@20e0000: uart1grp: 'fsl,pin' does not match any of the regexes: 'pinctrl-[0-9]+' Cc: stable@vger.kernel.org Fixes: e3b5697 ("ARM: dts: imx6ull: add seeed studio NPi dev board") Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> Reviewed-by: Parthiban Nallathambi <parthiban@linumiz.com> Signed-off-by: Shawn Guo <shawnguo@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
1 parent 2ddcedd commit 9373eaf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

arch/arm/boot/dts/nxp/imx/imx6ull-seeed-npi-dev-board.dtsi

+6-6
Original file line numberDiff line numberDiff line change
@@ -339,14 +339,14 @@
339339
};
340340

341341
pinctrl_uart1: uart1grp {
342-
fsl,pin = <
342+
fsl,pins = <
343343
MX6UL_PAD_UART1_TX_DATA__UART1_DCE_TX 0x1b0b1
344344
MX6UL_PAD_UART1_RX_DATA__UART1_DCE_RX 0x1b0b1
345345
>;
346346
};
347347

348348
pinctrl_uart2: uart2grp {
349-
fsl,pin = <
349+
fsl,pins = <
350350
MX6UL_PAD_UART2_TX_DATA__UART2_DCE_TX 0x1b0b1
351351
MX6UL_PAD_UART2_RX_DATA__UART2_DCE_RX 0x1b0b1
352352
MX6UL_PAD_UART2_CTS_B__UART2_DCE_CTS 0x1b0b1
@@ -355,7 +355,7 @@
355355
};
356356

357357
pinctrl_uart3: uart3grp {
358-
fsl,pin = <
358+
fsl,pins = <
359359
MX6UL_PAD_UART3_TX_DATA__UART3_DCE_TX 0x1b0b1
360360
MX6UL_PAD_UART3_RX_DATA__UART3_DCE_RX 0x1b0b1
361361
MX6UL_PAD_UART3_CTS_B__UART3_DCE_CTS 0x1b0b1
@@ -364,21 +364,21 @@
364364
};
365365

366366
pinctrl_uart4: uart4grp {
367-
fsl,pin = <
367+
fsl,pins = <
368368
MX6UL_PAD_UART4_TX_DATA__UART4_DCE_TX 0x1b0b1
369369
MX6UL_PAD_UART4_RX_DATA__UART4_DCE_RX 0x1b0b1
370370
>;
371371
};
372372

373373
pinctrl_uart5: uart5grp {
374-
fsl,pin = <
374+
fsl,pins = <
375375
MX6UL_PAD_UART5_TX_DATA__UART5_DCE_TX 0x1b0b1
376376
MX6UL_PAD_UART5_RX_DATA__UART5_DCE_RX 0x1b0b1
377377
>;
378378
};
379379

380380
pinctrl_usb_otg1_id: usbotg1idgrp {
381-
fsl,pin = <
381+
fsl,pins = <
382382
MX6UL_PAD_GPIO1_IO00__ANATOP_OTG1_ID 0x17059
383383
>;
384384
};

0 commit comments

Comments
 (0)