Commit bee7ff37 authored by Linus Walleij's avatar Linus Walleij
Browse files

ARM/arm64: dts: Rename SMB bus to just bus



Discussing the YAML validation schema with the DT maintainers
it came out that a bus named "smb@80000000" is not really
accepted, and the schema was written to name the static memory
bus just "bus@80000000".

This change is necessary for the schema to kick in and validate
these device trees, else the schema gets ignored.

Cc: Rob Herring <robh+dt@kernel.org>
Acked-by: default avatarSudeep Holla <sudeep.holla@arm.com>
Signed-off-by: default avatarLinus Walleij <linus.walleij@linaro.org>
parent 2d483550
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
 */

/ {
	smb@8000000 {
	bus@8000000 {
		motherboard {
			model = "V2M-P1";
			arm,hbi = <0x190>;
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@
 */

/ {
	smb@4000000 {
	bus@4000000 {
		motherboard {
			model = "V2M-P1";
			arm,hbi = <0x190>;
+1 −1
Original line number Diff line number Diff line
@@ -236,7 +236,7 @@
		};
	};

	smb@8000000 {
	bus@8000000 {
		compatible = "simple-bus";

		#address-cells = <2>;
+1 −1
Original line number Diff line number Diff line
@@ -608,7 +608,7 @@
		};
	};

	smb: smb@8000000 {
	smb: bus@8000000 {
		compatible = "simple-bus";

		#address-cells = <2>;
+1 −1
Original line number Diff line number Diff line
@@ -206,7 +206,7 @@
		};
	};

	smb: smb@8000000 {
	smb: bus@8000000 {
		compatible = "simple-bus";

		#address-cells = <2>;
Loading