lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening PHC | |
Open Source and information security mailing list archives
| ||
|
Date: Fri, 22 Mar 2019 15:51:06 -0700 From: tip-bot for YueHaibing <tipbot@...or.com> To: linux-tip-commits@...r.kernel.org Cc: linux-kernel@...r.kernel.org, yuehaibing@...wei.com, tglx@...utronix.de, hpa@...or.com, mingo@...nel.org, daniel.lezcano@...aro.org Subject: [tip:timers/urgent] clocksource/drivers/mips-gic-timer: Make gic_compare_irqaction static Commit-ID: 9039de4034775f4420bf01fa879f8c04b3cd6bba Gitweb: https://git.kernel.org/tip/9039de4034775f4420bf01fa879f8c04b3cd6bba Author: YueHaibing <yuehaibing@...wei.com> AuthorDate: Fri, 22 Mar 2019 22:43:59 +0800 Committer: Thomas Gleixner <tglx@...utronix.de> CommitDate: Fri, 22 Mar 2019 22:59:33 +0100 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: YueHaibing <yuehaibing@...wei.com> Signed-off-by: Thomas Gleixner <tglx@...utronix.de> Cc: <daniel.lezcano@...aro.org> Link: https://lkml.kernel.org/r/20190322144359.19516-1-yuehaibing@huawei.com --- drivers/clocksource/mips-gic-timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/clocksource/mips-gic-timer.c b/drivers/clocksource/mips-gic-timer.c index 54f8a331b53a..37671a5d4ed9 100644 --- a/drivers/clocksource/mips-gic-timer.c +++ b/drivers/clocksource/mips-gic-timer.c @@ -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,
Powered by blists - more mailing lists