Explorar el Código

ARM: EXYNOS: Make combiner_init function static

Fixes the following warning:
arch/arm/mach-exynos/common.c:543:13:
warning: symbol 'combiner_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>
Sachin Kamat hace 13 años
padre
commit
2a2b0e208e
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. 2 1
      arch/arm/mach-exynos/common.c

+ 2 - 1
arch/arm/mach-exynos/common.c

@@ -540,7 +540,8 @@ static struct irq_domain_ops combiner_irq_domain_ops = {
 	.map	= combiner_irq_domain_map,
 };
 
-void __init combiner_init(void __iomem *combiner_base, struct device_node *np)
+static void __init combiner_init(void __iomem *combiner_base,
+				 struct device_node *np)
 {
 	int i, irq, irq_base;
 	unsigned int max_nr, nr_irq;