diff options
author | Sachin Kamat <sachin.kamat@linaro.org> | 2012-11-08 01:22:08 +0100 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2012-11-08 01:22:08 +0100 |
commit | 96046ea38e8f6caee12e44bd9c4f699ae2832080 (patch) | |
tree | dd0a6fff8ddce07676b878515a975c04f647e573 /arch/arm/mach-exynos | |
parent | ARM: EXYNOS: Make s3c_device_i2c0 always use id 0 (diff) | |
download | linux-96046ea38e8f6caee12e44bd9c4f699ae2832080.tar.xz linux-96046ea38e8f6caee12e44bd9c4f699ae2832080.zip |
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 4e577f6e6164..5b35d7168f3c 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; |