浏览代码

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>
Thierry Reding 8 年之前
父节点
当前提交
9261b43e70
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      drivers/soc/tegra/fuse/fuse-tegra.c

+ 1 - 1
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