soc/tegra: fuse: Add missing semi-colon

Commit 8a46828e623c ("soc/tegra: Register SoC device") added a new
initcall, but forgot to terminate the line with a semi-colon. Some
recent versions of GCC seem to report this as an error.

Fixes: 8a46828e623c ("soc/tegra: Register SoC device")
Reported-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
This commit is contained in:
Thierry Reding 2017-08-23 11:25:09 +02:00 committed by Arnd Bergmann
parent 226cff485c
commit 9261b43e70
1 changed files with 1 additions and 1 deletions

View File

@ -364,5 +364,5 @@ static int __init tegra_init_soc(void)
return 0;
}
device_initcall(tegra_init_soc)
device_initcall(tegra_init_soc);
#endif