mbox series

[v2,00/13] ARM: dts: sunxi: Cleanup DTC warnings

Message ID cover.ec8b238cd65ed1e16d9e4574b695f76c9b14f0c0.1552594551.git-series.maxime.ripard@bootlin.com (mailing list archive)
Headers show
Series ARM: dts: sunxi: Cleanup DTC warnings | expand

Message

Maxime Ripard March 14, 2019, 8:16 p.m. UTC
Here is the rest of the series that fixes most of our DTC warnings. The
number of warnings when compiled with W=1 after applying this series is now
reduced to 2.

The two remaining one are on the A80 and would require some change in
the clock driver. Given how little activity there is on the A80, we
can expect it to not happen in a near future, but I can live with two
warnings.

Let me know what you think,
Maxime

Changes from v1:
  - Rebased on current tree
  - Added some code in the DRM driver to deal with the endpoints
  - Fixed the DTS pipeline for the A83t and A64

Maxime Ripard (13):
  drm/sun4i: backend: Simplify the get_id logic
  drm/sun4i: mixer: Simplify the get_id logic
  ARM: dts: sun8i: a83t: Add cross links for the mixers
  arm64: dts: allwinner: a64: Add cross links for the mixers
  ARM: dts: sun5i: Fix display pipeline endpoint warnings in DTC
  ARM: dts: sun5i: Fix Display Engine DTC warnings
  ARM: dts: sun6i: Fix Display Engine DTC warnings
  ARM: dts: sun8i: a23/a33: Fix Display Engine DTC warnings
  ARM: dts: sun8i: v3s: Fix Display Engine DTC warnings
  ARM: dts: sun8i: a83t: Fix Display Engine DTC warnings
  ARM: dts: sun8i: r40: Fix Display Engine DTC warnings
  ARM: dts: sun9i: Fix Display Engine DTC warnings
  ARM: dts: sun9i: Add missing unit address

 arch/arm/boot/dts/sun5i-a13-olinuxino.dts      |  2 +-
 arch/arm/boot/dts/sun5i-a13-q8-tablet.dts      | 11 +---
 arch/arm/boot/dts/sun5i.dtsi                   | 25 +------
 arch/arm/boot/dts/sun6i-a31-hummingbird.dts    | 12 +---
 arch/arm/boot/dts/sun6i-a31.dtsi               | 12 +---
 arch/arm/boot/dts/sun8i-a23-a33.dtsi           | 32 +--------
 arch/arm/boot/dts/sun8i-a23-q8-tablet.dts      |  6 ++-
 arch/arm/boot/dts/sun8i-a33-q8-tablet.dts      |  7 ++-
 arch/arm/boot/dts/sun8i-a33-sinlinx-sina33.dts | 11 +---
 arch/arm/boot/dts/sun8i-a33.dtsi               | 18 +----
 arch/arm/boot/dts/sun8i-a83t-tbs-a711.dts      |  3 +-
 arch/arm/boot/dts/sun8i-a83t.dtsi              | 32 +++++++--
 arch/arm/boot/dts/sun8i-q8-common.dtsi         | 18 +-----
 arch/arm/boot/dts/sun8i-r40.dtsi               |  5 +-
 arch/arm/boot/dts/sun8i-v3s.dtsi               | 10 +---
 arch/arm/boot/dts/sun9i-a80-cubieboard4.dts    | 15 +----
 arch/arm/boot/dts/sun9i-a80.dtsi               | 66 +++----------------
 arch/arm64/boot/dts/allwinner/sun50i-a64.dtsi  | 33 +++++++++-
 drivers/gpu/drm/sun4i/sun4i_backend.c          | 34 +++-------
 drivers/gpu/drm/sun4i/sun8i_mixer.c            | 39 +++--------
 20 files changed, 140 insertions(+), 251 deletions(-)

base-commit: cf08baa29613dd899954089e7cc7dba1d478b365

Comments

Maxime Ripard March 15, 2019, 9:08 a.m. UTC | #1
On Thu, Mar 14, 2019 at 09:16:21PM +0100, Maxime Ripard wrote:
> Here is the rest of the series that fixes most of our DTC warnings. The
> number of warnings when compiled with W=1 after applying this series is now
> reduced to 2.
> 
> The two remaining one are on the A80 and would require some change in
> the clock driver. Given how little activity there is on the A80, we
> can expect it to not happen in a near future, but I can live with two
> warnings.
> 
> Let me know what you think,
> Maxime

Queued the patches 1-2 to drm-misc-next, and the patches 3-12 to the
sunxi tree.

Patch 13 is on hold for now.

Maxime