soc/tegra: fuse: Add missing semi-colon
authorThierry Reding <treding@nvidia.com>
Wed, 23 Aug 2017 09:25:09 +0000 (11:25 +0200)
committerArnd Bergmann <arnd@arndb.de>
Wed, 23 Aug 2017 09:54:27 +0000 (11:54 +0200)
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>
drivers/soc/tegra/fuse/fuse-tegra.c

index be003d0..b7c552e 100644 (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