From: Thierry Reding Date: Wed, 23 Aug 2017 09:25:09 +0000 (+0200) Subject: soc/tegra: fuse: Add missing semi-colon X-Git-Tag: v4.14-rc1~67^2~2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9261b43e70b79106deca8f734a5217134ce68f3d;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Thierry Reding Signed-off-by: Arnd Bergmann --- diff --git a/drivers/soc/tegra/fuse/fuse-tegra.c b/drivers/soc/tegra/fuse/fuse-tegra.c index be003d04383f5..b7c552e3133ca 100644 --- a/drivers/soc/tegra/fuse/fuse-tegra.c +++ b/drivers/soc/tegra/fuse/fuse-tegra.c @@ -364,5 +364,5 @@ static int __init tegra_init_soc(void) return 0; } -device_initcall(tegra_init_soc) +device_initcall(tegra_init_soc); #endif