aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/clocksource/timer-vf-pit.c
diff options
context:
space:
mode:
authorafzal mohammed <afzal.mohd.ma@gmail.com>2020-03-23 11:41:30 +0530
committerThomas Gleixner <tglx@linutronix.de>2020-04-05 09:24:58 +0200
commit760a53768610d427990192b5cfdb71310e1373db (patch)
tree53502d7df758e723474118d40561bed2a9f91b79 /drivers/clocksource/timer-vf-pit.c
parenthrtimer: Don't dereference the hrtimer pointer after the callback (diff)
downloadwireguard-linux-760a53768610d427990192b5cfdb71310e1373db.tar.xz
wireguard-linux-760a53768610d427990192b5cfdb71310e1373db.zip
clocksource/drivers/timer-vf-pit: Add missing parenthesis
Recently all usage of setup_irq() was replaced by request_irq(). The replacement in timer-vf-pit.c missed closing parentheses resulting in a build error (vf610m4_defconfig). Fix it. Fixes: cc2550b421aa ("clocksource: Replace setup_irq() by request_irq()") Reported-by: kbuild test robot <lkp@intel.com> Signed-off-by: afzal mohammed <afzal.mohd.ma@gmail.com> Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Link: https://lkml.kernel.org/r/20200323061130.GA6286@afzalpc
Diffstat (limited to 'drivers/clocksource/timer-vf-pit.c')
-rw-r--r--drivers/clocksource/timer-vf-pit.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clocksource/timer-vf-pit.c b/drivers/clocksource/timer-vf-pit.c
index 7ad4a8b008c2..1a86a4e7e344 100644
--- a/drivers/clocksource/timer-vf-pit.c
+++ b/drivers/clocksource/timer-vf-pit.c
@@ -129,7 +129,7 @@ static int __init pit_clockevent_init(unsigned long rate, int irq)
__raw_writel(PITTFLG_TIF, clkevt_base + PITTFLG);
BUG_ON(request_irq(irq, pit_timer_interrupt, IRQF_TIMER | IRQF_IRQPOLL,
- "VF pit timer", &clockevent_pit);
+ "VF pit timer", &clockevent_pit));
clockevent_pit.cpumask = cpumask_of(0);
clockevent_pit.irq = irq;