Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: dts: keystone: align LED node names with dtschema

The node names should be generic and DT schema expects certain pattern:

keystone-k2hk-evm.dtb: leds: 'debug1_1', 'debug1_2', 'debug2', 'debug3' do not match any of the regexes: '(^led-[0-9a-f]$|led)', 'pinctrl-[0-9]+'

Link: https://lore.kernel.org/r/20221125144123.477005-1-krzysztof.kozlowski@linaro.org
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>

+4 -4
+4 -4
arch/arm/boot/dts/keystone-k2hk-evm.dts
··· 28 28 29 29 leds { 30 30 compatible = "gpio-leds"; 31 - debug1_1 { 31 + led-debug-1-1 { 32 32 label = "keystone:green:debug1"; 33 33 gpios = <&gpio0 12 GPIO_ACTIVE_HIGH>; /* 12 */ 34 34 }; 35 35 36 - debug1_2 { 36 + led-debug-1-2 { 37 37 label = "keystone:red:debug1"; 38 38 gpios = <&gpio0 13 GPIO_ACTIVE_HIGH>; /* 13 */ 39 39 }; 40 40 41 - debug2 { 41 + led-debug-2 { 42 42 label = "keystone:blue:debug2"; 43 43 gpios = <&gpio0 14 GPIO_ACTIVE_HIGH>; /* 14 */ 44 44 }; 45 45 46 - debug3 { 46 + led-debug-3 { 47 47 label = "keystone:blue:debug3"; 48 48 gpios = <&gpio0 15 GPIO_ACTIVE_HIGH>; /* 15 */ 49 49 };