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: Thierry Reding <treding@nvidia.com>
This commit is contained in:
Thierry Reding 2020-07-17 15:41:42 +02:00
parent 46011d431b
commit eb8bb7abbb

View file

@ -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;
}