Commit f865d029 authored by Thierry Reding's avatar Thierry Reding
Browse files

arm64: tegra: Fix compatible string for Tegra132 CPUs



The documented compatible string for the CPUs found on Tegra132 is
"nvidia,tegra132-denver", rather than the previously used compatible
string "nvidia,denver".

Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent d6ff10e0
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1227,13 +1227,13 @@

		cpu@0 {
			device_type = "cpu";
			compatible = "nvidia,denver";
			compatible = "nvidia,tegra132-denver";
			reg = <0>;
		};

		cpu@1 {
			device_type = "cpu";
			compatible = "nvidia,denver";
			compatible = "nvidia,tegra132-denver";
			reg = <1>;
		};
	};