diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2022-01-26 18:41:57 +0100 |
---|---|---|
committer | Dinh Nguyen <dinguyen@kernel.org> | 2022-02-09 10:43:47 -0600 |
commit | 814927744e4e401d938ea8dc036cb048721ac32b (patch) | |
tree | fc2e65c607e48df61dde790ab1478e9a18710eaf /arch/arm64/boot/dts/intel | |
parent | 9ffc4e03dce02be1275b5577275426a48696502d (diff) | |
download | linux-stable-814927744e4e401d938ea8dc036cb048721ac32b.tar.gz linux-stable-814927744e4e401d938ea8dc036cb048721ac32b.tar.bz2 linux-stable-814927744e4e401d938ea8dc036cb048721ac32b.zip |
arm64: dts: intel: socfpga_agilex_socdk: align LED node names with dtschema
Align the LED node names with dtschema to silence dtbs_check warnings
like:
leds: 'hps0', 'hps1', 'hps2' do not match any of the regexes: '(^led-[0-9a-f]$|led)', 'pinctrl-[0-9]+'
Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Dinh Nguyen <dinguyen@kernel.org>
Diffstat (limited to 'arch/arm64/boot/dts/intel')
-rw-r--r-- | arch/arm64/boot/dts/intel/socfpga_agilex_socdk.dts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm64/boot/dts/intel/socfpga_agilex_socdk.dts b/arch/arm64/boot/dts/intel/socfpga_agilex_socdk.dts index ea37ba7ccff9..26cd3c121757 100644 --- a/arch/arm64/boot/dts/intel/socfpga_agilex_socdk.dts +++ b/arch/arm64/boot/dts/intel/socfpga_agilex_socdk.dts @@ -21,17 +21,17 @@ leds { compatible = "gpio-leds"; - hps0 { + led0 { label = "hps_led0"; gpios = <&portb 20 GPIO_ACTIVE_HIGH>; }; - hps1 { + led1 { label = "hps_led1"; gpios = <&portb 19 GPIO_ACTIVE_HIGH>; }; - hps2 { + led2 { label = "hps_led2"; gpios = <&portb 21 GPIO_ACTIVE_HIGH>; }; |