diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2021-03-08 20:09:45 +0300 |
---|---|---|
committer | Dinh Nguyen <dinguyen@kernel.org> | 2021-03-30 13:51:30 +0300 |
commit | 4a3b394f78e1a70f6d0c0ebb4a0ab78013d6c304 (patch) | |
tree | 5dcf7257f0d3ec3c539d04c2a6d845194030a013 /arch/arm64/boot/dts/intel | |
parent | ae68efe92dd50e5f2885a6ba41ce09e0281c601f (diff) | |
download | linux-4a3b394f78e1a70f6d0c0ebb4a0ab78013d6c304.tar.xz |
arm64: dts: intel: socfpga_agilex_socdk_nand: 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_nand.dts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/arch/arm64/boot/dts/intel/socfpga_agilex_socdk_nand.dts b/arch/arm64/boot/dts/intel/socfpga_agilex_socdk_nand.dts index 58a827a5e83f..cc2dcabf34e3 100644 --- a/arch/arm64/boot/dts/intel/socfpga_agilex_socdk_nand.dts +++ b/arch/arm64/boot/dts/intel/socfpga_agilex_socdk_nand.dts @@ -20,17 +20,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>; }; |