From: Geert Uytterhoeven <geert+renesas@glider.be>
To: Simon Horman <horms@verge.net.au>,
Magnus Damm <magnus.damm@gmail.com>,
Rob Herring <robh+dt@kernel.org>,
Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Cc: Mark Rutland <mark.rutland@arm.com>,
Ian Campbell <ijc+devicetree@hellion.org.uk>,
Kumar Gala <galak@codeaurora.org>,
linux-renesas-soc@vger.kernel.org, devicetree@vger.kernel.org,
linux-arm-kernel@lists.infradead.org,
Geert Uytterhoeven <geert+renesas@glider.be>
Subject: [PATCH 18/23] ARM: dts: lager: Fix W=1 dtc warnings
Date: Fri, 13 May 2016 09:55:58 +0200 [thread overview]
Message-ID: <1463126163-29423-19-git-send-email-geert+renesas@glider.be> (raw)
In-Reply-To: <1463126163-29423-1-git-send-email-geert+renesas@glider.be>
Warning (unit_address_vs_reg): Node /keyboard/button@1 has a unit name, but no reg property
Warning (unit_address_vs_reg): Node /keyboard/button@2 has a unit name, but no reg property
Warning (unit_address_vs_reg): Node /keyboard/button@3 has a unit name, but no reg property
Warning (unit_address_vs_reg): Node /keyboard/button@4 has a unit name, but no reg property
Warning (unit_address_vs_reg): Node /fixedregulator@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
Warning (unit_address_vs_reg): Node /regulator@2 has a unit name, but no reg property
Warning (unit_address_vs_reg): Node /regulator@3 has a unit name, but no reg property
Warning (unit_address_vs_reg): Node /regulator@4 has a unit name, but no reg property
Warning (unit_address_vs_reg): Node /i2c@8 has a unit name, but no reg property
Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
arch/arm/boot/dts/r8a7790-lager.dts | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/arch/arm/boot/dts/r8a7790-lager.dts b/arch/arm/boot/dts/r8a7790-lager.dts
index 749ba02b6a53a9de..c01e27868083147a 100644
--- a/arch/arm/boot/dts/r8a7790-lager.dts
+++ b/arch/arm/boot/dts/r8a7790-lager.dts
@@ -76,28 +76,28 @@
keyboard {
compatible = "gpio-keys";
- button@1 {
+ one {
linux,code = <KEY_1>;
label = "SW2-1";
wakeup-source;
debounce-interval = <20>;
gpios = <&gpio1 14 GPIO_ACTIVE_LOW>;
};
- button@2 {
+ two {
linux,code = <KEY_2>;
label = "SW2-2";
wakeup-source;
debounce-interval = <20>;
gpios = <&gpio1 24 GPIO_ACTIVE_LOW>;
};
- button@3 {
+ three {
linux,code = <KEY_3>;
label = "SW2-3";
wakeup-source;
debounce-interval = <20>;
gpios = <&gpio1 26 GPIO_ACTIVE_LOW>;
};
- button@4 {
+ four {
linux,code = <KEY_4>;
label = "SW2-4";
wakeup-source;
@@ -119,7 +119,7 @@
};
};
- fixedregulator3v3: fixedregulator@0 {
+ fixedregulator3v3: fixedregulator3v3 {
compatible = "regulator-fixed";
regulator-name = "fixed-3.3V";
regulator-min-microvolt = <3300000>;
@@ -128,7 +128,7 @@
regulator-always-on;
};
- vcc_sdhi0: regulator@1 {
+ vcc_sdhi0: regulator-vcc-sdhi0 {
compatible = "regulator-fixed";
regulator-name = "SDHI0 Vcc";
@@ -139,7 +139,7 @@
enable-active-high;
};
- vccq_sdhi0: regulator@2 {
+ vccq_sdhi0: regulator-vccq-sdhi0 {
compatible = "regulator-gpio";
regulator-name = "SDHI0 VccQ";
@@ -152,7 +152,7 @@
1800000 0>;
};
- vcc_sdhi2: regulator@3 {
+ vcc_sdhi2: regulator-vcc-sdhi2 {
compatible = "regulator-fixed";
regulator-name = "SDHI2 Vcc";
@@ -163,7 +163,7 @@
enable-active-high;
};
- vccq_sdhi2: regulator@4 {
+ vccq_sdhi2: regulator-vccq-sdhi2 {
compatible = "regulator-gpio";
regulator-name = "SDHI2 VccQ";
@@ -263,7 +263,7 @@
* instantiate the slave device at runtime according to the documentation.
* You can then communicate with the slave via IIC3.
*/
- i2cexio: i2c@8 {
+ i2cexio: i2c-8 {
compatible = "i2c-demux-pinctrl";
i2c-parent = <&iic0>, <&i2c0>;
i2c-bus-name = "i2c-exio";
--
1.9.1
next prev parent reply other threads:[~2016-05-13 7:55 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-05-13 7:55 [PATCH 00/23] ARM/arm64: dts: renesas: Fix W=1 dtc warnings Geert Uytterhoeven
2016-05-13 7:55 ` [PATCH 02/23] ARM: dts: r8a73a4: " Geert Uytterhoeven
2016-05-16 8:15 ` Geert Uytterhoeven
2016-05-13 7:55 ` [PATCH 03/23] ARM: dts: r8a7740: " Geert Uytterhoeven
2016-05-13 7:55 ` [PATCH 06/23] ARM: dts: r8a7791: " Geert Uytterhoeven
2016-05-13 7:55 ` [PATCH 07/23] ARM: dts: r8a7793: " Geert Uytterhoeven
2016-05-13 7:55 ` [PATCH 09/23] ARM: dts: sh73a0: " Geert Uytterhoeven
2016-05-13 7:55 ` [PATCH 12/23] ARM: dts: bockw: " Geert Uytterhoeven
2016-05-13 7:55 ` [PATCH 13/23] ARM: dts: genmai: " Geert Uytterhoeven
2016-05-13 7:55 ` [PATCH 14/23] ARM: dts: gose: " Geert Uytterhoeven
[not found] ` <1463126163-29423-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
2016-05-13 7:55 ` [PATCH 01/23] ARM: dts: emev2: " Geert Uytterhoeven
2016-05-13 7:55 ` [PATCH 04/23] ARM: dts: r8a7778: " Geert Uytterhoeven
2016-05-13 7:55 ` [PATCH 05/23] ARM: dts: r8a7790: " Geert Uytterhoeven
[not found] ` <1463126163-29423-6-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
2016-05-16 8:15 ` Geert Uytterhoeven
2016-05-13 7:55 ` [PATCH 08/23] ARM: dts: r8a7794: " Geert Uytterhoeven
2016-05-13 7:55 ` [PATCH 10/23] ARM: dts: ape6evm: " Geert Uytterhoeven
2016-05-13 7:55 ` [PATCH 11/23] ARM: dts: armadillo800eva: " Geert Uytterhoeven
2016-05-13 7:55 ` [PATCH 15/23] ARM: dts: koelsch: " Geert Uytterhoeven
2016-05-13 7:55 ` [PATCH 16/23] ARM: dts: kzm9d: " Geert Uytterhoeven
2016-05-13 7:55 ` [PATCH 17/23] ARM: dts: kzm9g: " Geert Uytterhoeven
2016-05-13 7:55 ` [PATCH 19/23] ARM: dts: marzen: " Geert Uytterhoeven
2016-05-13 11:38 ` Sergei Shtylyov
2016-05-13 7:56 ` [PATCH 21/23] ARM: dts: silk: " Geert Uytterhoeven
2016-05-13 7:56 ` [PATCH 22/23] arm64: dts: r8a7795: " Geert Uytterhoeven
[not found] ` <1463126163-29423-23-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
2016-05-16 8:16 ` Geert Uytterhoeven
2016-05-13 7:55 ` Geert Uytterhoeven [this message]
2016-05-13 11:40 ` [PATCH 18/23] ARM: dts: lager: " Sergei Shtylyov
2016-05-13 7:56 ` [PATCH 20/23] ARM: dts: porter: " Geert Uytterhoeven
2016-05-13 7:56 ` [PATCH 23/23] arm64: dts: salvator-x: " Geert Uytterhoeven
2016-05-16 0:29 ` [PATCH 00/23] ARM/arm64: dts: renesas: " Kuninori Morimoto
2016-05-20 4:30 ` Simon Horman
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1463126163-29423-19-git-send-email-geert+renesas@glider.be \
--to=geert+renesas@glider.be \
--cc=devicetree@vger.kernel.org \
--cc=galak@codeaurora.org \
--cc=horms@verge.net.au \
--cc=ijc+devicetree@hellion.org.uk \
--cc=kuninori.morimoto.gx@renesas.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=magnus.damm@gmail.com \
--cc=mark.rutland@arm.com \
--cc=robh+dt@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).