x86: Rename coreboot.dsti to serial.dtsi
authorBin Meng <bmeng.cn@gmail.com>
Wed, 24 Dec 2014 05:06:38 +0000 (13:06 +0800)
committerSimon Glass <sjg@chromium.org>
Tue, 13 Jan 2015 01:03:40 +0000 (17:03 -0800)
The name of coreboot.dtsi is misleading, as it actually describes
the legacy serial port device node.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
arch/x86/dts/coreboot.dtsi [deleted file]
arch/x86/dts/crownbay.dts
arch/x86/dts/link.dts
arch/x86/dts/serial.dtsi [new file with mode: 0644]

diff --git a/arch/x86/dts/coreboot.dtsi b/arch/x86/dts/coreboot.dtsi
deleted file mode 100644 (file)
index 65a93ac..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-/include/ "skeleton.dtsi"
-
-/ {
-       chosen {
-               stdout-path = "/serial";
-       };
-
-       serial {
-               compatible = "x86-uart";
-               reg = <0x3f8 0x10>;
-               reg-shift = <0>;
-               io-mapped = <1>;
-               multiplier = <1>;
-               baudrate = <115200>;
-               status = "disabled";
-       };
-};
index 3f43f3ca372b46484fa8cbfa85e8ef24159bf3be..c3e112f717990c2eca445de89ef2034f4b5cbf63 100644 (file)
@@ -6,7 +6,7 @@
 
 /dts-v1/;
 
-/include/ "coreboot.dtsi"
+/include/ "serial.dtsi"
 
 / {
        #address-cells = <1>;
index a739080a2fc480fc575eff2de449018988bfae1d..c6b7d82b45022d34a992ee213b57444a783f9886 100644 (file)
@@ -1,6 +1,6 @@
 /dts-v1/;
 
-/include/ "coreboot.dtsi"
+/include/ "serial.dtsi"
 
 / {
        #address-cells = <1>;
diff --git a/arch/x86/dts/serial.dtsi b/arch/x86/dts/serial.dtsi
new file mode 100644 (file)
index 0000000..65a93ac
--- /dev/null
@@ -0,0 +1,17 @@
+/include/ "skeleton.dtsi"
+
+/ {
+       chosen {
+               stdout-path = "/serial";
+       };
+
+       serial {
+               compatible = "x86-uart";
+               reg = <0x3f8 0x10>;
+               reg-shift = <0>;
+               io-mapped = <1>;
+               multiplier = <1>;
+               baudrate = <115200>;
+               status = "disabled";
+       };
+};