aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRob Herring <robh@kernel.org>2018-09-13 14:12:36 -0400
committerHeiko Stuebner <heiko@sntech.de>2018-09-17 03:41:56 -0400
commit131c3eb428ccd5f0c784b9edb4f72ec296a045d2 (patch)
treebcb599d150cddb183d7d6d0c03fd656e623b1bea
parent0fff1428bee08d40a01f24de731f6263f0a013cf (diff)
ARM: dts: rockchip: Fix erroneous SPI bus dtc warnings on rk3036
dtc has new checks for SPI buses. The rk3036 dts file has a node named spi' which causes false positive warnings. As the node is a pinctrl child node, change the node name to be 'spi-pins' to fix the warnings. arch/arm/boot/dts/rk3036-evb.dtb: Warning (spi_bus_bridge): /pinctrl/spi: incorrect #address-cells for SPI bus arch/arm/boot/dts/rk3036-kylin.dtb: Warning (spi_bus_bridge): /pinctrl/spi: incorrect #address-cells for SPI bus arch/arm/boot/dts/rk3036-evb.dtb: Warning (spi_bus_bridge): /pinctrl/spi: incorrect #size-cells for SPI bus arch/arm/boot/dts/rk3036-kylin.dtb: Warning (spi_bus_bridge): /pinctrl/spi: incorrect #size-cells for SPI bus Cc: Heiko Stuebner <heiko@sntech.de> Cc: linux-rockchip@lists.infradead.org Signed-off-by: Rob Herring <robh@kernel.org> Signed-off-by: Heiko Stuebner <heiko@sntech.de>
-rw-r--r--arch/arm/boot/dts/rk3036.dtsi2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/rk3036.dtsi b/arch/arm/boot/dts/rk3036.dtsi
index 67f57200d9a0..d560fc4051c5 100644
--- a/arch/arm/boot/dts/rk3036.dtsi
+++ b/arch/arm/boot/dts/rk3036.dtsi
@@ -733,7 +733,7 @@
733 /* no rts / cts for uart2 */ 733 /* no rts / cts for uart2 */
734 }; 734 };
735 735
736 spi { 736 spi-pins {
737 spi_txd:spi-txd { 737 spi_txd:spi-txd {
738 rockchip,pins = <1 29 RK_FUNC_3 &pcfg_pull_default>; 738 rockchip,pins = <1 29 RK_FUNC_3 &pcfg_pull_default>;
739 }; 739 };