diff options
Diffstat (limited to 'drivers/clocksource/timer-vf-pit.c')
| -rw-r--r-- | drivers/clocksource/timer-vf-pit.c | 10 | 
1 files changed, 2 insertions, 8 deletions
diff --git a/drivers/clocksource/timer-vf-pit.c b/drivers/clocksource/timer-vf-pit.c index fef0bb4e0c8c..1a86a4e7e344 100644 --- a/drivers/clocksource/timer-vf-pit.c +++ b/drivers/clocksource/timer-vf-pit.c @@ -123,19 +123,13 @@ static struct clock_event_device clockevent_pit = {  	.rating		= 300,  }; -static struct irqaction pit_timer_irq = { -	.name		= "VF pit timer", -	.flags		= IRQF_TIMER | IRQF_IRQPOLL, -	.handler	= pit_timer_interrupt, -	.dev_id		= &clockevent_pit, -}; -  static int __init pit_clockevent_init(unsigned long rate, int irq)  {  	__raw_writel(0, clkevt_base + PITTCTRL);  	__raw_writel(PITTFLG_TIF, clkevt_base + PITTFLG); -	BUG_ON(setup_irq(irq, &pit_timer_irq)); +	BUG_ON(request_irq(irq, pit_timer_interrupt, IRQF_TIMER | IRQF_IRQPOLL, +			   "VF pit timer", &clockevent_pit));  	clockevent_pit.cpumask = cpumask_of(0);  	clockevent_pit.irq = irq;  |