projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
226cff4
)
soc/tegra: fuse: Add missing semi-colon
author
Thierry Reding
<treding@nvidia.com>
Wed, 23 Aug 2017 09:25:09 +0000
(11:25 +0200)
committer
Arnd 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
patch
|
blob
|
blame
|
history
diff --git
a/drivers/soc/tegra/fuse/fuse-tegra.c
b/drivers/soc/tegra/fuse/fuse-tegra.c
index be003d04383f5891103387fad550b449a2acfed4..b7c552e3133ca2bde10d6699e235151f2b60db31 100644
(file)
--- 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