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

ARM: dts: at91: ariettag25: style cleanup

- newline between properties and sub-nodes
- use tags from included dtsi instead of duplicating the hierarchy
- status should be the last property
- drop duplicated alias

There are no differences in the generated .dtb

Signed-off-by: Uwe Kleine-König <uwe@kleine-koenig.org>
Link: https://lore.kernel.org/r/20190812212757.23432-3-uwe@kleine-koenig.org
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>

authored by

Uwe Kleine-König and committed by
Alexandre Belloni
c756f614 60839c53

+47 -53
+47 -53
arch/arm/boot/dts/at91-ariettag25.dts
··· 6 6 */ 7 7 /dts-v1/; 8 8 #include "at91sam9g25.dtsi" 9 + 9 10 / { 10 11 model = "Acme Systems Arietta G25"; 11 12 compatible = "acme,ariettag25", "atmel,at91sam9x5", "atmel,at91sam9"; 12 - 13 - aliases { 14 - serial0 = &dbgu; 15 - }; 16 13 17 14 chosen { 18 15 stdout-path = "serial0:115200n8"; ··· 29 32 }; 30 33 }; 31 34 32 - ahb { 33 - apb { 34 - mmc0: mmc@f0008000 { 35 - pinctrl-0 = < 36 - &pinctrl_mmc0_slot0_clk_cmd_dat0 37 - &pinctrl_mmc0_slot0_dat1_3>; 38 - status = "okay"; 39 - 40 - slot@0 { 41 - reg = <0>; 42 - bus-width = <4>; 43 - }; 44 - }; 45 - 46 - tcb0: timer@f8008000 { 47 - timer@0 { 48 - compatible = "atmel,tcb-timer"; 49 - reg = <0>; 50 - }; 51 - 52 - timer@1 { 53 - compatible = "atmel,tcb-timer"; 54 - reg = <1>; 55 - }; 56 - }; 57 - 58 - usb2: gadget@f803c000 { 59 - status = "okay"; 60 - }; 61 - 62 - dbgu: serial@fffff200 { 63 - status = "okay"; 64 - }; 65 - 66 - rtc@fffffeb0 { 67 - status = "okay"; 68 - }; 69 - }; 70 - 71 - usb0: ohci@600000 { 72 - status = "okay"; 73 - num-ports = <3>; 74 - }; 75 - 76 - usb1: ehci@700000 { 77 - status = "okay"; 78 - }; 79 - }; 80 - 81 35 leds { 82 36 compatible = "gpio-leds"; 37 + 83 38 arietta_led { 84 39 label = "arietta_led"; 85 40 gpios = <&pioB 8 GPIO_ACTIVE_HIGH>; /* PB8 */ 86 41 linux,default-trigger = "heartbeat"; 87 42 }; 88 43 }; 44 + }; 45 + 46 + &dbgu { 47 + status = "okay"; 48 + }; 49 + 50 + &mmc0 { 51 + pinctrl-0 = < 52 + &pinctrl_mmc0_slot0_clk_cmd_dat0 53 + &pinctrl_mmc0_slot0_dat1_3>; 54 + status = "okay"; 55 + 56 + slot@0 { 57 + reg = <0>; 58 + bus-width = <4>; 59 + }; 60 + }; 61 + 62 + &rtc { 63 + status = "okay"; 64 + }; 65 + 66 + &tcb0 { 67 + timer@0 { 68 + compatible = "atmel,tcb-timer"; 69 + reg = <0>; 70 + }; 71 + 72 + timer@1 { 73 + compatible = "atmel,tcb-timer"; 74 + reg = <1>; 75 + }; 76 + }; 77 + 78 + &usb0 { 79 + num-ports = <3>; 80 + status = "okay"; 81 + }; 82 + 83 + &usb1 { 84 + status = "okay"; 85 + }; 86 + 87 + &usb2 { 88 + status = "okay"; 89 89 };