Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9039de40 authored by YueHaibing's avatar YueHaibing Committed by Thomas Gleixner
Browse files

clocksource/drivers/mips-gic-timer: Make gic_compare_irqaction static



Fix sparse warning:

drivers/clocksource/mips-gic-timer.c:70:18: warning:
 symbol 'gic_compare_irqaction' was not declared. Should it be static?

Signed-off-by: default avatarYueHaibing <yuehaibing@huawei.com>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
Cc: <daniel.lezcano@linaro.org>
Link: https://lkml.kernel.org/r/20190322144359.19516-1-yuehaibing@huawei.com
parent 008258d9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -67,7 +67,7 @@ static irqreturn_t gic_compare_interrupt(int irq, void *dev_id)
	return IRQ_HANDLED;
}

struct irqaction gic_compare_irqaction = {
static struct irqaction gic_compare_irqaction = {
	.handler = gic_compare_interrupt,
	.percpu_dev_id = &gic_clockevent_device,
	.flags = IRQF_PERCPU | IRQF_TIMER,