diff options
author | Ben Dooks <ben.dooks@codethink.co.uk> | 2016-06-08 18:41:37 +0100 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2016-06-13 00:56:09 +0000 |
commit | 1eeb67362d93ab6099ed536641dac68df0f2e18d (patch) | |
tree | b215de8018341915f2d5241934684861c36654b8 /drivers/irqchip/irq-bcm2836.c | |
parent | 6c880902419e6e2188fbd1e418ce82410f079a8d (diff) | |
download | talos-op-linux-1eeb67362d93ab6099ed536641dac68df0f2e18d.tar.gz talos-op-linux-1eeb67362d93ab6099ed536641dac68df0f2e18d.zip |
irqchip/bcm2836: Make bcm2836_smp_boot_secondary static
The bcm2836_smp_boot_secondary() is not declared or used elsewhere
so make it static to fix the following warning:
drivers/irqchip/irq-bcm2836.c:227:12: warning: symbol 'bcm2836_smp_boot_secondary' was not declared. Should it be static?
Signed-off-by: Ben Dooks <ben.dooks@codethink.co.uk>
Link: https://lkml.kernel.org/r/1465407697-8116-1-git-send-email-ben.dooks@codethink.co.uk
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'drivers/irqchip/irq-bcm2836.c')
-rw-r--r-- | drivers/irqchip/irq-bcm2836.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/irqchip/irq-bcm2836.c b/drivers/irqchip/irq-bcm2836.c index 72ff1d5c5de6..6c72e605c5c4 100644 --- a/drivers/irqchip/irq-bcm2836.c +++ b/drivers/irqchip/irq-bcm2836.c @@ -224,8 +224,8 @@ static struct notifier_block bcm2836_arm_irqchip_cpu_notifier = { }; #ifdef CONFIG_ARM -int __init bcm2836_smp_boot_secondary(unsigned int cpu, - struct task_struct *idle) +static int __init bcm2836_smp_boot_secondary(unsigned int cpu, + struct task_struct *idle) { unsigned long secondary_startup_phys = (unsigned long)virt_to_phys((void *)secondary_startup); |