diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-11-08 09:22:08 +0900 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2012-11-08 09:22:08 +0900 |
commit | 96046ea38e8f6caee12e44bd9c4f699ae2832080 (patch) | |
tree | dd0a6fff8ddce07676b878515a975c04f647e573 /arch/arm/mach-exynos | |
parent | 62ef4a5d7a33852b54798dd738f675ac746f0d4c (diff) |
ARM: EXYNOS: Make combiner_of_init function static
Silences the following warning:
arch/arm/mach-exynos/common.c:576:12: warning:
symbol 'combiner_of_init' was not declared. Should it be static?
Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-exynos')
-rw-r--r-- | arch/arm/mach-exynos/common.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-exynos/common.c b/arch/arm/mach-exynos/common.c index 4e577f6e616..5b35d7168f3 100644 --- a/arch/arm/mach-exynos/common.c +++ b/arch/arm/mach-exynos/common.c @@ -573,7 +573,8 @@ static void __init combiner_init(void __iomem *combiner_base, } #ifdef CONFIG_OF -int __init combiner_of_init(struct device_node *np, struct device_node *parent) +static int __init combiner_of_init(struct device_node *np, + struct device_node *parent) { void __iomem *combiner_base; |