Skip to content

Commit d98bccf

Browse files
jonhunterthierryreding
authored andcommitted
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: 6394489 ("arm64: tegra: Initial Tegra234 VDK support") Reported-by: Ashish Singhal <ashishsingha@nvidia.com> Signed-off-by: Jon Hunter <jonathanh@nvidia.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
1 parent 1741e18 commit d98bccf

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

arch/arm64/boot/dts/nvidia/tegra234-sim-vdk.dts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
compatible = "nvidia,tegra234-vdk", "nvidia,tegra234";
99

1010
aliases {
11-
sdhci3 = "/cbb@0/sdhci@3460000";
11+
mmc3 = "/bus@0/mmc@3460000";
1212
serial0 = &uarta;
1313
};
1414

@@ -17,12 +17,12 @@
1717
stdout-path = "serial0:115200n8";
1818
};
1919

20-
cbb@0 {
20+
bus@0 {
2121
serial@3100000 {
2222
status = "okay";
2323
};
2424

25-
sdhci@3460000 {
25+
mmc@3460000 {
2626
status = "okay";
2727
bus-width = <8>;
2828
non-removable;

0 commit comments

Comments
 (0)