Skip to content

Commit

Permalink
m68knommu: use IRQF_DISABLE in m68328serial.c
Browse files Browse the repository at this point in the history
Use IRQF_DISABLED instead of obsolete IRQ_FLG_STD for request_irq() flags
in m68328serial.c driver.

Signed-off-by: Greg Ungerer <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
  • Loading branch information
Greg Ungerer authored and torvalds committed Feb 1, 2008
1 parent dad263b commit 7c74806
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/serial/68328serial.c
Original file line number Diff line number Diff line change
Expand Up @@ -1410,7 +1410,7 @@ rs68328_init(void)

if (request_irq(uart_irqs[i],
rs_interrupt,
IRQ_FLG_STD,
IRQF_DISABLED,
"M68328_UART", NULL))
panic("Unable to attach 68328 serial interrupt\n");
}
Expand Down

0 comments on commit 7c74806

Please sign in to comment.