Commit d98bccf1 authored by Jon Hunter's avatar Jon Hunter Committed by Thierry Reding

arm64: tegra: Fix Tegra234 VDK node names

When the device-tree board file was added for the Tegra234 VDK simulator
it incorrectly used the names 'cbb' and 'sdhci' instead of 'bus' and
'mmc', respectively. The names 'bus' and 'mmc' are required by the
device-tree json-schema validation tools. Therefore, fix this by
renaming these nodes accordingly.

Fixes: 63944891 ("arm64: tegra: Initial Tegra234 VDK support")
Reported-by: default avatarAshish Singhal <ashishsingha@nvidia.com>
Signed-off-by: default avatarJon Hunter <jonathanh@nvidia.com>
Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 1741e187
...@@ -8,7 +8,7 @@ / { ...@@ -8,7 +8,7 @@ / {
compatible = "nvidia,tegra234-vdk", "nvidia,tegra234"; compatible = "nvidia,tegra234-vdk", "nvidia,tegra234";
aliases { aliases {
sdhci3 = "/cbb@0/sdhci@3460000"; mmc3 = "/bus@0/mmc@3460000";
serial0 = &uarta; serial0 = &uarta;
}; };
...@@ -17,12 +17,12 @@ chosen { ...@@ -17,12 +17,12 @@ chosen {
stdout-path = "serial0:115200n8"; stdout-path = "serial0:115200n8";
}; };
cbb@0 { bus@0 {
serial@3100000 { serial@3100000 {
status = "okay"; status = "okay";
}; };
sdhci@3460000 { mmc@3460000 {
status = "okay"; status = "okay";
bus-width = <8>; bus-width = <8>;
non-removable; non-removable;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment