[<prev] [next>] [day] [month] [year] [list]
Message-Id: <1472111183-10867-1-git-send-email-baoyou.xie@linaro.org>
Date: Thu, 25 Aug 2016 15:46:23 +0800
From: Baoyou Xie <baoyou.xie@...aro.org>
To: tglx@...utronix.de, jason@...edaemon.net, marc.zyngier@....com
Cc: linux-kernel@...r.kernel.org, arnd@...db.de, xie.baoyou@....com.cn,
baoyou.xie@...aro.org
Subject: [PATCH] irqchip: irq-gic: mark symbols static where possible
We get 1 warning when build kernel with W=1:
irqchip/irq-gic.c:917:13: warning: no previous prototype for 'gic_init_physaddr' [-Wmissing-prototypes]
In fact, this function is only used in the file in which it is declared
and don't need a declaration, but can be made static.
so this patch marks it 'static'.
Signed-off-by: Baoyou Xie <baoyou.xie@...aro.org>
---
drivers/irqchip/irq-gic.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/irqchip/irq-gic.c b/drivers/irqchip/irq-gic.c
index c2cab57..6f8d322 100644
--- a/drivers/irqchip/irq-gic.c
+++ b/drivers/irqchip/irq-gic.c
@@ -914,7 +914,7 @@ unsigned long gic_get_sgir_physaddr(void)
return gic_dist_physaddr + GIC_DIST_SOFTINT;
}
-void __init gic_init_physaddr(struct device_node *node)
+static void __init gic_init_physaddr(struct device_node *node)
{
struct resource res;
if (of_address_to_resource(node, 0, &res) == 0) {
--
2.7.4
Powered by blists - more mailing lists