diff options
Diffstat (limited to 'arch/mips/pnx8550/common/time.c')
| -rw-r--r-- | arch/mips/pnx8550/common/time.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/mips/pnx8550/common/time.c b/arch/mips/pnx8550/common/time.c index 8836c6203df..831d6b369e9 100644 --- a/arch/mips/pnx8550/common/time.c +++ b/arch/mips/pnx8550/common/time.c @@ -59,7 +59,7 @@ static irqreturn_t pnx8xxx_timer_interrupt(int irq, void *dev_id)  static struct irqaction pnx8xxx_timer_irq = {  	.handler	= pnx8xxx_timer_interrupt, -	.flags		= IRQF_DISABLED | IRQF_PERCPU | IRQF_TIMER, +	.flags		= IRQF_PERCPU | IRQF_TIMER,  	.name		= "pnx8xxx_timer",  }; @@ -72,7 +72,7 @@ static irqreturn_t monotonic_interrupt(int irq, void *dev_id)  static struct irqaction monotonic_irqaction = {  	.handler = monotonic_interrupt, -	.flags = IRQF_DISABLED | IRQF_TIMER, +	.flags = IRQF_TIMER,  	.name = "Monotonic timer",  };  |