From: Corentin Labbe <clabbe.montjoie@gmail.com>
To: robh+dt@kernel.org, mark.rutland@arm.com, linux@armlinux.org.uk,
maxime.ripard@free-electrons.com, wens@csie.org,
catalin.marinas@arm.com, will.deacon@arm.com
Cc: devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org,
linux-kernel@vger.kernel.org,
Corentin Labbe <clabbe.montjoie@gmail.com>
Subject: [PATCH v3 00/14] ARM: dts: sunxi: Fix DT build warnings
Date: Tue, 26 Sep 2017 09:22:20 +0200 [thread overview]
Message-ID: <20170926072234.27481-1-clabbe.montjoie@gmail.com> (raw)
Hello
The goal of this patch series is to have a clean DT build with W=1.
Regards
Changes since v1:
- moved i2c2 unit address change from patch #2 in patch #1
Changes since v2
- added two patch for fixing pin names
Corentin Labbe (14):
ARM: dts: sunxi: h3/h5: Fix simple-bus unit address format error
ARM: dts: sunxi: h3/h5: Fix i2c2 register address
ARM: dts: sunxi: h3/h5: Fix node with unit name and no reg property
ARM: dts: nanopi: Fix node with unit name and no reg property
ARM: dts: orangepi2: Fix node with unit name and no reg property
ARM: dts: sun8i: orangepi-lite: Fix node with unit name and no reg
property
ARM: dts: sun8i: orangepi one: Fix node with unit name and no reg
property
ARM: dts: sun8i: orangepipc: Fix node with unit name and no reg
property
ARM: dts: sun8i: orangepi-plus: Fix node with unit name and no reg
property
arm64: allwinner: a64: Fix simple-bus unit address format error
arm64: allwinner: a64: Fix node with unit name and no reg property
ARM: dts: sun8i: a83t: Fix simple-bus unit address format error
arm64: allwinner: a64: fix pin name
ARM: dts: sun8i: fix pin name
arch/arm/boot/dts/sun8i-a83t.dtsi | 6 +-
arch/arm/boot/dts/sun8i-h2-plus-orangepi-zero.dts | 8 +-
arch/arm/boot/dts/sun8i-h3-bananapi-m2-plus.dts | 8 +-
arch/arm/boot/dts/sun8i-h3-beelink-x2.dts | 10 +--
arch/arm/boot/dts/sun8i-h3-nanopi-m1-plus.dts | 4 +-
arch/arm/boot/dts/sun8i-h3-nanopi-m1.dts | 2 +-
arch/arm/boot/dts/sun8i-h3-nanopi-neo-air.dts | 4 +-
arch/arm/boot/dts/sun8i-h3-nanopi.dtsi | 12 +--
arch/arm/boot/dts/sun8i-h3-orangepi-2.dts | 16 ++--
arch/arm/boot/dts/sun8i-h3-orangepi-lite.dts | 14 ++--
arch/arm/boot/dts/sun8i-h3-orangepi-one.dts | 10 +--
arch/arm/boot/dts/sun8i-h3-orangepi-pc-plus.dts | 2 +-
arch/arm/boot/dts/sun8i-h3-orangepi-pc.dts | 12 +--
arch/arm/boot/dts/sun8i-h3-orangepi-plus.dts | 2 +-
arch/arm/boot/dts/sunxi-h3-h5.dtsi | 88 +++++++++++-----------
.../boot/dts/allwinner/sun50i-a64-bananapi-m64.dts | 2 +-
.../boot/dts/allwinner/sun50i-a64-nanopi-a64.dts | 2 +-
.../boot/dts/allwinner/sun50i-a64-olinuxino.dts | 2 +-
.../boot/dts/allwinner/sun50i-a64-orangepi-win.dts | 2 +-
.../arm64/boot/dts/allwinner/sun50i-a64-pine64.dts | 2 +-
.../dts/allwinner/sun50i-a64-sopine-baseboard.dts | 2 +-
arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi | 26 +++----
.../dts/allwinner/sun50i-h5-nanopi-neo-plus2.dts | 6 +-
.../boot/dts/allwinner/sun50i-h5-nanopi-neo2.dts | 4 +-
.../boot/dts/allwinner/sun50i-h5-orangepi-pc2.dts | 6 +-
.../dts/allwinner/sun50i-h5-orangepi-prime.dts | 8 +-
.../allwinner/sun50i-h5-orangepi-zero-plus2.dts | 4 +-
27 files changed, 132 insertions(+), 132 deletions(-)
--
2.13.5
next reply other threads:[~2017-09-26 7:24 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-26 7:22 Corentin Labbe [this message]
2017-09-26 7:22 ` [PATCH v3 01/14] ARM: dts: sunxi: h3/h5: Fix simple-bus unit address format error Corentin Labbe
2017-09-26 7:22 ` [PATCH v3 02/14] ARM: dts: sunxi: h3/h5: Fix i2c2 register address Corentin Labbe
2018-08-01 13:11 ` Icenowy Zheng
2017-09-26 7:22 ` [PATCH v3 03/14] ARM: dts: sunxi: h3/h5: Fix node with unit name and no reg property Corentin Labbe
2017-09-26 7:22 ` [PATCH v3 04/14] ARM: dts: nanopi: " Corentin Labbe
2017-09-26 7:22 ` [PATCH v3 05/14] ARM: dts: orangepi2: " Corentin Labbe
2017-09-26 7:22 ` [PATCH v3 06/14] ARM: dts: sun8i: orangepi-lite: " Corentin Labbe
2017-09-26 7:22 ` [PATCH v3 07/14] ARM: dts: sun8i: orangepi one: " Corentin Labbe
2017-09-26 7:22 ` [PATCH v3 08/14] ARM: dts: sun8i: orangepipc: " Corentin Labbe
2017-09-26 7:22 ` [PATCH v3 09/14] ARM: dts: sun8i: orangepi-plus: " Corentin Labbe
2017-09-26 7:22 ` [PATCH v3 10/14] arm64: allwinner: a64: Fix simple-bus unit address format error Corentin Labbe
2017-09-26 7:22 ` [PATCH v3 11/14] arm64: allwinner: a64: Fix node with unit name and no reg property Corentin Labbe
2017-09-26 7:22 ` [PATCH v3 12/14] ARM: dts: sun8i: a83t: Fix simple-bus unit address format error Corentin Labbe
2017-09-26 7:22 ` [PATCH v3 13/14] arm64: allwinner: a64: fix pin name Corentin Labbe
2017-09-26 7:46 ` Chen-Yu Tsai
2017-09-26 7:53 ` Corentin Labbe
2017-09-26 7:22 ` [PATCH v3 14/14] ARM: dts: sun8i: " Corentin Labbe
2017-09-26 7:48 ` [PATCH v3 00/14] ARM: dts: sunxi: Fix DT build warnings Chen-Yu Tsai
2017-09-26 8:58 ` Maxime Ripard
2017-09-26 13:01 ` Chen-Yu Tsai
2017-09-27 15:18 ` Chen-Yu Tsai
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=20170926072234.27481-1-clabbe.montjoie@gmail.com \
--to=clabbe.montjoie@gmail.com \
--cc=catalin.marinas@arm.com \
--cc=devicetree@vger.kernel.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux@armlinux.org.uk \
--cc=mark.rutland@arm.com \
--cc=maxime.ripard@free-electrons.com \
--cc=robh+dt@kernel.org \
--cc=wens@csie.org \
--cc=will.deacon@arm.com \
/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
all inboxes | Powered by JetHome®