aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeert Uytterhoeven <geert+renesas@glider.be>2016-05-20 03:10:07 -0400
committerSimon Horman <horms+renesas@verge.net.au>2016-05-29 20:37:12 -0400
commit815be9c2a436855227774f77b4d251292792964b (patch)
treeebe5364a00626b8c950d53a98df77ef558017583
parenta704b2769fd27e47664f901571fc0f29702721e5 (diff)
ARM: dts: kzm9d: Fix W=1 dtc warnings
Warning (unit_address_vs_reg): Node /memory has a reg or ranges property, but no unit name Warning (unit_address_vs_reg): Node /pfc@e0140200/serial@e1030000 has a unit name, but no reg property Warning (unit_address_vs_reg): Node /gpio_keys/button@1 has a unit name, but no reg property Warning (unit_address_vs_reg): Node /gpio_keys/button@2 has a unit name, but no reg property Warning (unit_address_vs_reg): Node /gpio_keys/button@3 has a unit name, but no reg property Warning (unit_address_vs_reg): Node /gpio_keys/button@4 has a unit name, but no reg property Warning (unit_address_vs_reg): Node /regulator@0 has a unit name, but no reg property Warning (unit_address_vs_reg): Node /regulator@1 has a unit name, but no reg property Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r--arch/arm/boot/dts/emev2-kzm9d.dts16
1 files changed, 8 insertions, 8 deletions
diff --git a/arch/arm/boot/dts/emev2-kzm9d.dts b/arch/arm/boot/dts/emev2-kzm9d.dts
index a35b851e1cd7..9eb86f8f32c5 100644
--- a/arch/arm/boot/dts/emev2-kzm9d.dts
+++ b/arch/arm/boot/dts/emev2-kzm9d.dts
@@ -18,7 +18,7 @@
18 model = "EMEV2 KZM9D Board"; 18 model = "EMEV2 KZM9D Board";
19 compatible = "renesas,kzm9d", "renesas,emev2"; 19 compatible = "renesas,kzm9d", "renesas,emev2";
20 20
21 memory { 21 memory@40000000 {
22 device_type = "memory"; 22 device_type = "memory";
23 reg = <0x40000000 0x8000000>; 23 reg = <0x40000000 0x8000000>;
24 }; 24 };
@@ -33,28 +33,28 @@
33 #address-cells = <1>; 33 #address-cells = <1>;
34 #size-cells = <0>; 34 #size-cells = <0>;
35 35
36 button@1 { 36 one {
37 debounce_interval = <50>; 37 debounce_interval = <50>;
38 wakeup-source; 38 wakeup-source;
39 label = "DSW2-1"; 39 label = "DSW2-1";
40 linux,code = <KEY_1>; 40 linux,code = <KEY_1>;
41 gpios = <&gpio0 14 GPIO_ACTIVE_HIGH>; 41 gpios = <&gpio0 14 GPIO_ACTIVE_HIGH>;
42 }; 42 };
43 button@2 { 43 two {
44 debounce_interval = <50>; 44 debounce_interval = <50>;
45 wakeup-source; 45 wakeup-source;
46 label = "DSW2-2"; 46 label = "DSW2-2";
47 linux,code = <KEY_2>; 47 linux,code = <KEY_2>;
48 gpios = <&gpio0 15 GPIO_ACTIVE_HIGH>; 48 gpios = <&gpio0 15 GPIO_ACTIVE_HIGH>;
49 }; 49 };
50 button@3 { 50 three {
51 debounce_interval = <50>; 51 debounce_interval = <50>;
52 wakeup-source; 52 wakeup-source;
53 label = "DSW2-3"; 53 label = "DSW2-3";
54 linux,code = <KEY_3>; 54 linux,code = <KEY_3>;
55 gpios = <&gpio0 16 GPIO_ACTIVE_HIGH>; 55 gpios = <&gpio0 16 GPIO_ACTIVE_HIGH>;
56 }; 56 };
57 button@4 { 57 four {
58 debounce_interval = <50>; 58 debounce_interval = <50>;
59 wakeup-source; 59 wakeup-source;
60 label = "DSW2-4"; 60 label = "DSW2-4";
@@ -63,7 +63,7 @@
63 }; 63 };
64 }; 64 };
65 65
66 reg_1p8v: regulator@0 { 66 reg_1p8v: regulator-1p8v {
67 compatible = "regulator-fixed"; 67 compatible = "regulator-fixed";
68 regulator-name = "fixed-1.8V"; 68 regulator-name = "fixed-1.8V";
69 regulator-min-microvolt = <1800000>; 69 regulator-min-microvolt = <1800000>;
@@ -72,7 +72,7 @@
72 regulator-boot-on; 72 regulator-boot-on;
73 }; 73 };
74 74
75 reg_3p3v: regulator@1 { 75 reg_3p3v: regulator-3p3v {
76 compatible = "regulator-fixed"; 76 compatible = "regulator-fixed";
77 regulator-name = "fixed-3.3V"; 77 regulator-name = "fixed-3.3V";
78 regulator-min-microvolt = <3300000>; 78 regulator-min-microvolt = <3300000>;
@@ -104,7 +104,7 @@
104}; 104};
105 105
106&pfc { 106&pfc {
107 uart1_pins: serial@e1030000 { 107 uart1_pins: uart1 {
108 groups = "uart1_ctrl", "uart1_data"; 108 groups = "uart1_ctrl", "uart1_data";
109 function = "uart1"; 109 function = "uart1";
110 }; 110 };