linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arm64: dts: marvell: Fix stray and typo "pinctrl-names" properties
@ 2026-01-05 19:46 Rob Herring (Arm)
  2026-01-07 16:49 ` Gregory CLEMENT
  0 siblings, 1 reply; 2+ messages in thread
From: Rob Herring (Arm) @ 2026-01-05 19:46 UTC (permalink / raw)
  To: Andrew Lunn, Gregory Clement, Sebastian Hesselbarth,
	Krzysztof Kozlowski, Conor Dooley
  Cc: linux-arm-kernel, devicetree, linux-kernel

There's several cases of "pinctrl-names" used without any "pinctrl-0"
properties. Drop them.

Fix the typo "pintrl-names" as well.

Signed-off-by: Rob Herring (Arm) <robh@kernel.org>
---
 arch/arm64/boot/dts/marvell/armada-3720-espressobin-ultra.dts | 1 -
 arch/arm64/boot/dts/marvell/cn9130-cf-base.dts                | 2 +-
 arch/arm64/boot/dts/marvell/cn9130-crb.dtsi                   | 1 -
 arch/arm64/boot/dts/marvell/cn9130-db.dtsi                    | 2 --
 arch/arm64/boot/dts/marvell/cn9132-db.dtsi                    | 1 -
 5 files changed, 1 insertion(+), 6 deletions(-)

diff --git a/arch/arm64/boot/dts/marvell/armada-3720-espressobin-ultra.dts b/arch/arm64/boot/dts/marvell/armada-3720-espressobin-ultra.dts
index e82284888b9a..0ab33aa928e7 100644
--- a/arch/arm64/boot/dts/marvell/armada-3720-espressobin-ultra.dts
+++ b/arch/arm64/boot/dts/marvell/armada-3720-espressobin-ultra.dts
@@ -42,7 +42,6 @@ usb3_phy: usb3-phy {
 	};
 
 	gpio-leds {
-		pinctrl-names = "default";
 		compatible = "gpio-leds";
 		/* No assigned functions to the LEDs by default */
 		led1 {
diff --git a/arch/arm64/boot/dts/marvell/cn9130-cf-base.dts b/arch/arm64/boot/dts/marvell/cn9130-cf-base.dts
index 788a5c302b17..212865f6cf6a 100644
--- a/arch/arm64/boot/dts/marvell/cn9130-cf-base.dts
+++ b/arch/arm64/boot/dts/marvell/cn9130-cf-base.dts
@@ -137,7 +137,7 @@ led@1 {
 
 &cp0_pinctrl {
 	pinctrl-0 = <&sim_select_pins>;
-	pintrl-names = "default";
+	pinctrl-names = "default";
 
 	rear_button_pins: cp0-rear-button-pins {
 		marvell,pins = "mpp31";
diff --git a/arch/arm64/boot/dts/marvell/cn9130-crb.dtsi b/arch/arm64/boot/dts/marvell/cn9130-crb.dtsi
index 5689a8bdfd03..c9050e707a60 100644
--- a/arch/arm64/boot/dts/marvell/cn9130-crb.dtsi
+++ b/arch/arm64/boot/dts/marvell/cn9130-crb.dtsi
@@ -93,7 +93,6 @@ &uart0 {
 
 /* on-board eMMC U6 */
 &ap_sdhci0 {
-	pinctrl-names = "default";
 	bus-width = <8>;
 	status = "okay";
 	mmc-ddr-1_8v;
diff --git a/arch/arm64/boot/dts/marvell/cn9130-db.dtsi b/arch/arm64/boot/dts/marvell/cn9130-db.dtsi
index 7156739aa31a..8e413286e019 100644
--- a/arch/arm64/boot/dts/marvell/cn9130-db.dtsi
+++ b/arch/arm64/boot/dts/marvell/cn9130-db.dtsi
@@ -111,7 +111,6 @@ &uart0 {
 
 /* on-board eMMC - U9 */
 &ap_sdhci0 {
-	pinctrl-names = "default";
 	bus-width = <8>;
 	vqmmc-supply = <&ap0_reg_sd_vccq>;
 	status = "okay";
@@ -166,7 +165,6 @@ &cp0_i2c0 {
 	/* U36 */
 	expander0: pca953x@21 {
 		compatible = "nxp,pca9555";
-		pinctrl-names = "default";
 		gpio-controller;
 		#gpio-cells = <2>;
 		reg = <0x21>;
diff --git a/arch/arm64/boot/dts/marvell/cn9132-db.dtsi b/arch/arm64/boot/dts/marvell/cn9132-db.dtsi
index f82d45e62753..98eee9e4e10b 100644
--- a/arch/arm64/boot/dts/marvell/cn9132-db.dtsi
+++ b/arch/arm64/boot/dts/marvell/cn9132-db.dtsi
@@ -142,7 +142,6 @@ i2c@1 {
 			/* U12 */
 			cp2_module_expander1: pca9555@21 {
 				compatible = "nxp,pca9555";
-				pinctrl-names = "default";
 				gpio-controller;
 				#gpio-cells = <2>;
 				reg = <0x21>;
-- 
2.51.0



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] arm64: dts: marvell: Fix stray and typo "pinctrl-names" properties
  2026-01-05 19:46 [PATCH] arm64: dts: marvell: Fix stray and typo "pinctrl-names" properties Rob Herring (Arm)
@ 2026-01-07 16:49 ` Gregory CLEMENT
  0 siblings, 0 replies; 2+ messages in thread
From: Gregory CLEMENT @ 2026-01-07 16:49 UTC (permalink / raw)
  To: Rob Herring (Arm), Andrew Lunn, Sebastian Hesselbarth,
	Krzysztof Kozlowski, Conor Dooley
  Cc: linux-arm-kernel, devicetree, linux-kernel

"Rob Herring (Arm)" <robh@kernel.org> writes:

> There's several cases of "pinctrl-names" used without any "pinctrl-0"
> properties. Drop them.
>
> Fix the typo "pintrl-names" as well.
>
> Signed-off-by: Rob Herring (Arm) <robh@kernel.org>

Applied on mvebu/dt64

Thanks,

Gregory
> ---
>  arch/arm64/boot/dts/marvell/armada-3720-espressobin-ultra.dts | 1 -
>  arch/arm64/boot/dts/marvell/cn9130-cf-base.dts                | 2 +-
>  arch/arm64/boot/dts/marvell/cn9130-crb.dtsi                   | 1 -
>  arch/arm64/boot/dts/marvell/cn9130-db.dtsi                    | 2 --
>  arch/arm64/boot/dts/marvell/cn9132-db.dtsi                    | 1 -
>  5 files changed, 1 insertion(+), 6 deletions(-)
>
> diff --git a/arch/arm64/boot/dts/marvell/armada-3720-espressobin-ultra.dts b/arch/arm64/boot/dts/marvell/armada-3720-espressobin-ultra.dts
> index e82284888b9a..0ab33aa928e7 100644
> --- a/arch/arm64/boot/dts/marvell/armada-3720-espressobin-ultra.dts
> +++ b/arch/arm64/boot/dts/marvell/armada-3720-espressobin-ultra.dts
> @@ -42,7 +42,6 @@ usb3_phy: usb3-phy {
>  	};
>  
>  	gpio-leds {
> -		pinctrl-names = "default";
>  		compatible = "gpio-leds";
>  		/* No assigned functions to the LEDs by default */
>  		led1 {
> diff --git a/arch/arm64/boot/dts/marvell/cn9130-cf-base.dts b/arch/arm64/boot/dts/marvell/cn9130-cf-base.dts
> index 788a5c302b17..212865f6cf6a 100644
> --- a/arch/arm64/boot/dts/marvell/cn9130-cf-base.dts
> +++ b/arch/arm64/boot/dts/marvell/cn9130-cf-base.dts
> @@ -137,7 +137,7 @@ led@1 {
>  
>  &cp0_pinctrl {
>  	pinctrl-0 = <&sim_select_pins>;
> -	pintrl-names = "default";
> +	pinctrl-names = "default";
>  
>  	rear_button_pins: cp0-rear-button-pins {
>  		marvell,pins = "mpp31";
> diff --git a/arch/arm64/boot/dts/marvell/cn9130-crb.dtsi b/arch/arm64/boot/dts/marvell/cn9130-crb.dtsi
> index 5689a8bdfd03..c9050e707a60 100644
> --- a/arch/arm64/boot/dts/marvell/cn9130-crb.dtsi
> +++ b/arch/arm64/boot/dts/marvell/cn9130-crb.dtsi
> @@ -93,7 +93,6 @@ &uart0 {
>  
>  /* on-board eMMC U6 */
>  &ap_sdhci0 {
> -	pinctrl-names = "default";
>  	bus-width = <8>;
>  	status = "okay";
>  	mmc-ddr-1_8v;
> diff --git a/arch/arm64/boot/dts/marvell/cn9130-db.dtsi b/arch/arm64/boot/dts/marvell/cn9130-db.dtsi
> index 7156739aa31a..8e413286e019 100644
> --- a/arch/arm64/boot/dts/marvell/cn9130-db.dtsi
> +++ b/arch/arm64/boot/dts/marvell/cn9130-db.dtsi
> @@ -111,7 +111,6 @@ &uart0 {
>  
>  /* on-board eMMC - U9 */
>  &ap_sdhci0 {
> -	pinctrl-names = "default";
>  	bus-width = <8>;
>  	vqmmc-supply = <&ap0_reg_sd_vccq>;
>  	status = "okay";
> @@ -166,7 +165,6 @@ &cp0_i2c0 {
>  	/* U36 */
>  	expander0: pca953x@21 {
>  		compatible = "nxp,pca9555";
> -		pinctrl-names = "default";
>  		gpio-controller;
>  		#gpio-cells = <2>;
>  		reg = <0x21>;
> diff --git a/arch/arm64/boot/dts/marvell/cn9132-db.dtsi b/arch/arm64/boot/dts/marvell/cn9132-db.dtsi
> index f82d45e62753..98eee9e4e10b 100644
> --- a/arch/arm64/boot/dts/marvell/cn9132-db.dtsi
> +++ b/arch/arm64/boot/dts/marvell/cn9132-db.dtsi
> @@ -142,7 +142,6 @@ i2c@1 {
>  			/* U12 */
>  			cp2_module_expander1: pca9555@21 {
>  				compatible = "nxp,pca9555";
> -				pinctrl-names = "default";
>  				gpio-controller;
>  				#gpio-cells = <2>;
>  				reg = <0x21>;
> -- 
> 2.51.0
>

-- 
Grégory CLEMENT, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com


^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2026-01-07 16:49 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-05 19:46 [PATCH] arm64: dts: marvell: Fix stray and typo "pinctrl-names" properties Rob Herring (Arm)
2026-01-07 16:49 ` Gregory CLEMENT

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).