diff options
author | Patrice Chotard <patrice.chotard@st.com> | 2018-01-09 18:38:57 +0300 |
---|---|---|
committer | Patrice Chotard <patrice.chotard@st.com> | 2018-02-12 17:24:34 +0300 |
commit | 7aef6b3a2179a4ad536831b343a820a4b7221c33 (patch) | |
tree | f9501bf7733aac0e1bfa7ecf5e39ddaaa732b589 /arch/arm/boot/dts/stih418-b2199.dts | |
parent | d6d854cc1c2a055afdf5d22ee4aee0d20a59968c (diff) | |
download | linux-7aef6b3a2179a4ad536831b343a820a4b7221c33.tar.xz |
ARM: dts: STi: Move leds node outside soc node
Leds are not part of soc, so nove them outside soc node.
This allows to fix the following warnings when compiling
dtb with W=1 option :
arch/arm/boot/dts/stih407-b2120.dtb: Warning (simple_bus_reg):
Node /soc/leds missing or empty reg/ranges property
arch/arm/boot/dts/stih410-b2120.dtb: Warning (simple_bus_reg):
Node /soc/leds missing or empty reg/ranges property
arch/arm/boot/dts/stih418-b2199.dtb: Warning (simple_bus_reg):
Node /soc/leds missing or empty reg/ranges property
Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
Diffstat (limited to 'arch/arm/boot/dts/stih418-b2199.dts')
-rw-r--r-- | arch/arm/boot/dts/stih418-b2199.dts | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/arch/arm/boot/dts/stih418-b2199.dts b/arch/arm/boot/dts/stih418-b2199.dts index 5418a0ece659..1ce38ce79952 100644 --- a/arch/arm/boot/dts/stih418-b2199.dts +++ b/arch/arm/boot/dts/stih418-b2199.dts @@ -28,24 +28,24 @@ ethernet0 = ðernet0; }; + leds { + compatible = "gpio-leds"; + red { + label = "Front Panel LED"; + gpios = <&pio4 1 GPIO_ACTIVE_HIGH>; + linux,default-trigger = "heartbeat"; + }; + green { + gpios = <&pio1 3 GPIO_ACTIVE_HIGH>; + default-state = "off"; + }; + }; + soc { sbc_serial0: serial@9530000 { status = "okay"; }; - leds { - compatible = "gpio-leds"; - red { - label = "Front Panel LED"; - gpios = <&pio4 1 GPIO_ACTIVE_HIGH>; - linux,default-trigger = "heartbeat"; - }; - green { - gpios = <&pio1 3 GPIO_ACTIVE_HIGH>; - default-state = "off"; - }; - }; - i2c@9842000 { status = "okay"; }; |