From: Fabio Estevam <fabio.este...@freescale.com>

Fix the following sparse warnings:

drivers/irqchip/irq-gic.c:651:6: warning: symbol 'gic_raise_softirq' was not 
declared. Should it be static?
drivers/irqchip/irq-gic.c:831:29: warning: symbol 'gic_irq_domain_ops' was not 
declared. Should it be static?
drivers/irqchip/irq-gic.c:935:12: warning: symbol 'gic_of_init' was not 
declared. Should it be static?

Signed-off-by: Fabio Estevam <fabio.este...@freescale.com>
---
 drivers/irqchip/irq-gic.c | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/drivers/irqchip/irq-gic.c b/drivers/irqchip/irq-gic.c
index 6365b59..7d6bc22 100644
--- a/drivers/irqchip/irq-gic.c
+++ b/drivers/irqchip/irq-gic.c
@@ -648,7 +648,7 @@ static void __init gic_pm_init(struct gic_chip_data *gic)
 #endif
 
 #ifdef CONFIG_SMP
-void gic_raise_softirq(const struct cpumask *mask, unsigned int irq)
+static void gic_raise_softirq(const struct cpumask *mask, unsigned int irq)
 {
        int cpu;
        unsigned long flags, map = 0;
@@ -828,7 +828,7 @@ static struct notifier_block gic_cpu_notifier = {
 };
 #endif
 
-const struct irq_domain_ops gic_irq_domain_ops = {
+static const struct irq_domain_ops gic_irq_domain_ops = {
        .map = gic_irq_domain_map,
        .xlate = gic_irq_domain_xlate,
 };
@@ -932,7 +932,8 @@ void __init gic_init_bases(unsigned int gic_nr, int 
irq_start,
 #ifdef CONFIG_OF
 static int gic_cnt __initdata;
 
-int __init gic_of_init(struct device_node *node, struct device_node *parent)
+static int __init gic_of_init(struct device_node *node,
+                             struct device_node *parent)
 {
        void __iomem *cpu_base;
        void __iomem *dist_base;
-- 
1.8.1.2

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to