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

soc/tegra: fuse: Fix typo in APB MISC warning



The hardware block is called APB MISC, not ABP MISC, so fix the warning
to use the correct name.

Signed-off-by: default avatarThierry Reding <treding@nvidia.com>
parent 46011d43
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -27,7 +27,7 @@ static u32 chipid;

u32 tegra_read_chipid(void)
{
	WARN(!chipid, "Tegra ABP MISC not yet available\n");
	WARN(!chipid, "Tegra APB MISC not yet available\n");

	return chipid;
}