[SPARC, XEN, NET/CXGB3] use irq_handler_t where appropriate
Rather than hand-rolling our own prototype, make the code more future-proof by using the standard irq_handler_t typedef. Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
This commit is contained in:
@ -479,7 +479,7 @@ EXPORT_SYMBOL(pdma_areasize);
|
||||
|
||||
extern void floppy_hardint(void);
|
||||
|
||||
static irqreturn_t (*floppy_irq_handler)(int irq, void *dev_id);
|
||||
static irq_handler_t floppy_irq_handler;
|
||||
|
||||
void sparc_floppy_irq(int irq, void *dev_id, struct pt_regs *regs)
|
||||
{
|
||||
@ -500,7 +500,7 @@ void sparc_floppy_irq(int irq, void *dev_id, struct pt_regs *regs)
|
||||
}
|
||||
|
||||
int sparc_floppy_request_irq(int irq, unsigned long flags,
|
||||
irqreturn_t (*irq_handler)(int irq, void *))
|
||||
irq_handler_t irq_handler)
|
||||
{
|
||||
floppy_irq_handler = irq_handler;
|
||||
return request_fast_irq(irq, floppy_hardint, flags, "floppy");
|
||||
|
Reference in New Issue
Block a user