Skip to content

Commit 760a537

Browse files
afzalmamKAGA-KOKO
authored andcommitted
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: cc2550b ("clocksource: Replace setup_irq() by request_irq()") Reported-by: kbuild test robot <[email protected]> Signed-off-by: afzal mohammed <[email protected]> Signed-off-by: Thomas Gleixner <[email protected]> Link: https://lkml.kernel.org/r/20200323061130.GA6286@afzalpc
1 parent 73d2056 commit 760a537

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/clocksource/timer-vf-pit.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ static int __init pit_clockevent_init(unsigned long rate, int irq)
129129
__raw_writel(PITTFLG_TIF, clkevt_base + PITTFLG);
130130

131131
BUG_ON(request_irq(irq, pit_timer_interrupt, IRQF_TIMER | IRQF_IRQPOLL,
132-
"VF pit timer", &clockevent_pit);
132+
"VF pit timer", &clockevent_pit));
133133

134134
clockevent_pit.cpumask = cpumask_of(0);
135135
clockevent_pit.irq = irq;

0 commit comments

Comments
 (0)