Skip to content

Commit

Permalink
MIPS: ralink: remove deprecated IRQF_DISABLED
Browse files Browse the repository at this point in the history
Remove the use of the IRQF_DISABLED flag
from arch/mips/ralink/timer.c

It's a NOOP since 2.6.35 and it will be removed soon.

Signed-off-by: Michael Opdenacker <[email protected]>
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Cc: [email protected]
Patchwork: https://patchwork.linux-mips.org/patch/7886/
Signed-off-by: Ralf Baechle <[email protected]>
  • Loading branch information
Michael Opdenacker authored and ralfbaechle committed Sep 29, 2014
1 parent 4b050ba commit 31d6f57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arch/mips/ralink/timer.c
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ static irqreturn_t rt_timer_irq(int irq, void *_rt)

static int rt_timer_request(struct rt_timer *rt)
{
int err = request_irq(rt->irq, rt_timer_irq, IRQF_DISABLED,
int err = request_irq(rt->irq, rt_timer_irq, 0,
dev_name(rt->dev), rt);
if (err) {
dev_err(rt->dev, "failed to request irq\n");
Expand Down

0 comments on commit 31d6f57

Please sign in to comment.