summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAhmad Fatoum <ahmad@a3f.at>2020-11-28 22:39:25 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2020-12-07 11:27:11 +0100
commita79f7ca0d7d5c194ab03219ae662e31aff5f49c9 (patch)
tree8b81f52cdffbb53003ecb358183f031b6412aef6
parent2eadeacdcc2a49a6824fba056ad484a58db5abeb (diff)
downloadbarebox-a79f7ca0d7d5c194ab03219ae662e31aff5f49c9.tar.gz
barebox-a79f7ca0d7d5c194ab03219ae662e31aff5f49c9.tar.xz
ARM: dts: rpi: drop unnecessary /chosen/stdout-path overrides
The upstream device trees reference the stdout-path via alias. barebox overrides them with a path to the node, but the effect is the same as both barebox and the kernel accept both for the property's value. No functional change: serial0 serial1 upstream stdout-path Rpi1 &uart0 &uart1 serial0 Rpi2 &uart0 &uart1 serial0 Rpi3 &uart0 &uart1 serial1 Tested on a Raspberry Pi 3B. Cc: Lucas Stach <l.stach@pengutronix.de> Signed-off-by: Ahmad Fatoum <ahmad@a3f.at> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
-rw-r--r--arch/arm/dts/bcm2835-rpi.dts6
-rw-r--r--arch/arm/dts/bcm2836-rpi-2.dts6
-rw-r--r--arch/arm/dts/bcm2837-rpi-3.dts6
3 files changed, 0 insertions, 18 deletions
diff --git a/arch/arm/dts/bcm2835-rpi.dts b/arch/arm/dts/bcm2835-rpi.dts
index cc5a8a9271..121edebdb3 100644
--- a/arch/arm/dts/bcm2835-rpi.dts
+++ b/arch/arm/dts/bcm2835-rpi.dts
@@ -1,11 +1,5 @@
#include <arm/bcm2835-rpi-a.dts>
-/ {
- chosen {
- stdout-path = &uart0;
- };
-};
-
&{/memory@0} {
reg = <0x0 0x0>;
};
diff --git a/arch/arm/dts/bcm2836-rpi-2.dts b/arch/arm/dts/bcm2836-rpi-2.dts
index c9c3892d6a..c9106515ee 100644
--- a/arch/arm/dts/bcm2836-rpi-2.dts
+++ b/arch/arm/dts/bcm2836-rpi-2.dts
@@ -1,11 +1,5 @@
#include <arm/bcm2836-rpi-2-b.dts>
-/ {
- chosen {
- stdout-path = &uart0;
- };
-};
-
&{/memory@0} {
reg = <0x0 0x0>;
};
diff --git a/arch/arm/dts/bcm2837-rpi-3.dts b/arch/arm/dts/bcm2837-rpi-3.dts
index d66beddb22..e82d518fa5 100644
--- a/arch/arm/dts/bcm2837-rpi-3.dts
+++ b/arch/arm/dts/bcm2837-rpi-3.dts
@@ -1,11 +1,5 @@
#include <arm64/broadcom/bcm2837-rpi-3-b.dts>
-/ {
- chosen {
- stdout-path = &uart1;
- };
-};
-
&{/memory@0} {
reg = <0x0 0x0>;
};