Unverified Commit 4f848f23 authored by Arnd Bergmann's avatar Arnd Bergmann
Browse files

Merge tag 'dt-cleanup-6.3' of...

Merge tag 'dt-cleanup-6.3' of https://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-dt into arm/dt

Minor improvements in ARM DTS for v6.3

1. Drop 0x from unit address (socpfga).
2. Align HDMI CEC and LED nodes with bindings (stih410, keystone, dove,
   at91).

* tag 'dt-cleanup-6.3' of https://git.kernel.org/pub/scm/linux/kernel/git/krzk/linux-dt:
  ARM: dts: at91: align LED node names with dtschema
  ARM: dts: dove: align LED node names with dtschema
  ARM: dts: keystone: align LED node names with dtschema
  ARM: dts: stih410: align HDMI CEC node names with dtschema
  ARM: dts: socfpga: drop 0x from unit address

Link: https://lore.kernel.org/r/20230122121541.29312-2-krzysztof.kozlowski@linaro.org


Signed-off-by: default avatarArnd Bergmann <arnd@arndb.de>
parents 6042a588 3a48b303
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -31,37 +31,37 @@ reset-button {
	leds {
		compatible = "gpio-leds";

		ethernet {
		led-ethernet {
			label = "gatwick:yellow:ethernet";
			gpios = <&pioA 10 GPIO_ACTIVE_LOW>;
			default-state = "off";
		};

		wifi {
		led-wifi {
			label = "gatwick:green:wifi";
			gpios = <&pioA 28 GPIO_ACTIVE_LOW>;
			default-state = "off";
		};

		ble {
		led-ble {
			label = "gatwick:blue:ble";
			gpios = <&pioA 22 GPIO_ACTIVE_LOW>;
			default-state = "off";
		};

		lora {
		led-lora {
			label = "gatwick:orange:lora";
			gpios = <&pioA 26 GPIO_ACTIVE_LOW>;
			default-state = "off";
		};

		blank {
		led-blank {
			label = "gatwick:green:blank";
			gpios = <&pioA 24 GPIO_ACTIVE_LOW>;
			default-state = "off";
		};

		user {
		led-user {
			label = "gatwick:yellow:user";
			gpios = <&pioA 12 GPIO_ACTIVE_LOW>;
			default-state = "off";
+3 −3
Original line number Diff line number Diff line
@@ -498,17 +498,17 @@ leds {
		pinctrl-0 = <&pinctrl_led_gpio_default>;
		status = "okay"; /* Conflict with pwm0. */

		red {
		led-red {
			label = "red";
			gpios = <&pioA PIN_PA10 GPIO_ACTIVE_HIGH>;
		};

		green {
		led-green {
			label = "green";
			gpios = <&pioA PIN_PB1 GPIO_ACTIVE_HIGH>;
		};

		blue {
		led-blue {
			label = "blue";
			gpios = <&pioA PIN_PA31 GPIO_ACTIVE_HIGH>;
			linux,default-trigger = "heartbeat";
+3 −3
Original line number Diff line number Diff line
@@ -46,17 +46,17 @@ leds {
		pinctrl-0 = <&pinctrl_led_gpio_default>;
		status = "okay";

		red {
		led-red {
			label = "red";
			gpios = <&pioA PIN_PA6 GPIO_ACTIVE_HIGH>;
		};

		green {
		led-green {
			label = "green";
			gpios = <&pioA PIN_PA7 GPIO_ACTIVE_HIGH>;
		};

		blue {
		led-blue {
			label = "blue";
			gpios = <&pioA PIN_PA8 GPIO_ACTIVE_HIGH>;
			linux,default-trigger = "heartbeat";
+3 −3
Original line number Diff line number Diff line
@@ -62,17 +62,17 @@ leds {
		pinctrl-0 = <&pinctrl_led_gpio_default>;
		status = "okay"; /* conflict with pwm0 */

		red {
		led-red {
			label = "red";
			gpios = <&pioA PIN_PB0 GPIO_ACTIVE_HIGH>;
		};

		green {
		led-green {
			label = "green";
			gpios = <&pioA PIN_PB1 GPIO_ACTIVE_HIGH>;
		};

		blue {
		led-blue {
			label = "blue";
			gpios = <&pioA PIN_PA31 GPIO_ACTIVE_HIGH>;
			linux,default-trigger = "heartbeat";
+3 −3
Original line number Diff line number Diff line
@@ -416,17 +416,17 @@ leds {
		pinctrl-0 = <&pinctrl_led_gpio_default>;
		status = "okay";

		red {
		led-red {
			label = "red";
			gpios = <&pioA PIN_PB10 GPIO_ACTIVE_HIGH>;
		};

		green {
		led-green {
			label = "green";
			gpios = <&pioA PIN_PB8 GPIO_ACTIVE_HIGH>;
		};

		blue {
		led-blue {
			label = "blue";
			gpios = <&pioA PIN_PB6 GPIO_ACTIVE_HIGH>;
			linux,default-trigger = "heartbeat";
Loading