diff options
author | Olof Johansson <olof@lixom.net> | 2012-12-15 12:43:47 -0500 |
---|---|---|
committer | Olof Johansson <olof@lixom.net> | 2012-12-17 13:04:26 -0500 |
commit | d0c2e4e4676431c8b25f034d2e3fe041542a5281 (patch) | |
tree | 43111d27c996a4b77018716a6b2a8a17a64a8c10 /arch/arm/mach-exynos/common.h | |
parent | fa4c95bfdb85d568ae327d57aa33a4f55bab79c4 (diff) |
ARM: exynos: Fix warning due to missing 'inline' in stub
In file included from arch/arm/mach-exynos/clock-exynos5.c:29:0:
arch/arm/mach-exynos/common.h:28:12: warning: 'exynos_pm_late_initcall' defined but not used [-Wunused-function]
Signed-off-by: Olof Johansson <olof@lixom.net>
Cc: Kukjin Kim <kgene.kim@samsung.com>
Cc: Shawn Guo <shawn.guo@linaro.org>
Diffstat (limited to 'arch/arm/mach-exynos/common.h')
-rw-r--r-- | arch/arm/mach-exynos/common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/common.h b/arch/arm/mach-exynos/common.h index dac146df79ac..04744f9c120f 100644 --- a/arch/arm/mach-exynos/common.h +++ b/arch/arm/mach-exynos/common.h | |||
@@ -25,7 +25,7 @@ void exynos_init_late(void); | |||
25 | #ifdef CONFIG_PM_GENERIC_DOMAINS | 25 | #ifdef CONFIG_PM_GENERIC_DOMAINS |
26 | int exynos_pm_late_initcall(void); | 26 | int exynos_pm_late_initcall(void); |
27 | #else | 27 | #else |
28 | static int exynos_pm_late_initcall(void) { return 0; } | 28 | static inline int exynos_pm_late_initcall(void) { return 0; } |
29 | #endif | 29 | #endif |
30 | 30 | ||
31 | #ifdef CONFIG_ARCH_EXYNOS4 | 31 | #ifdef CONFIG_ARCH_EXYNOS4 |