diff options
Diffstat (limited to 'drivers/parport')
| -rw-r--r-- | drivers/parport/parport_ax88796.c | 2 | ||||
| -rw-r--r-- | drivers/parport/parport_mfc3.c | 2 | ||||
| -rw-r--r-- | drivers/parport/parport_sunbpp.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/drivers/parport/parport_ax88796.c b/drivers/parport/parport_ax88796.c index 4baa719439a2..1850632590fd 100644 --- a/drivers/parport/parport_ax88796.c +++ b/drivers/parport/parport_ax88796.c | |||
| @@ -345,7 +345,7 @@ static int parport_ax88796_probe(struct platform_device *pdev) | |||
| 345 | if (irq >= 0) { | 345 | if (irq >= 0) { |
| 346 | /* request irq */ | 346 | /* request irq */ |
| 347 | ret = request_irq(irq, parport_ax88796_interrupt, | 347 | ret = request_irq(irq, parport_ax88796_interrupt, |
| 348 | SA_TRIGGER_FALLING, pdev->name, pp); | 348 | IRQF_TRIGGER_FALLING, pdev->name, pp); |
| 349 | 349 | ||
| 350 | if (ret < 0) | 350 | if (ret < 0) |
| 351 | goto exit_port; | 351 | goto exit_port; |
diff --git a/drivers/parport/parport_mfc3.c b/drivers/parport/parport_mfc3.c index c85364765ef8..b2b8092a2b39 100644 --- a/drivers/parport/parport_mfc3.c +++ b/drivers/parport/parport_mfc3.c | |||
| @@ -353,7 +353,7 @@ static int __init parport_mfc3_init(void) | |||
| 353 | 353 | ||
| 354 | if (p->irq != PARPORT_IRQ_NONE) { | 354 | if (p->irq != PARPORT_IRQ_NONE) { |
| 355 | if (use_cnt++ == 0) | 355 | if (use_cnt++ == 0) |
| 356 | if (request_irq(IRQ_AMIGA_PORTS, mfc3_interrupt, SA_SHIRQ, p->name, &pp_mfc3_ops)) | 356 | if (request_irq(IRQ_AMIGA_PORTS, mfc3_interrupt, IRQF_SHARED, p->name, &pp_mfc3_ops)) |
| 357 | goto out_irq; | 357 | goto out_irq; |
| 358 | } | 358 | } |
| 359 | 359 | ||
diff --git a/drivers/parport/parport_sunbpp.c b/drivers/parport/parport_sunbpp.c index 7c43c5392bed..fac333b279bf 100644 --- a/drivers/parport/parport_sunbpp.c +++ b/drivers/parport/parport_sunbpp.c | |||
| @@ -322,7 +322,7 @@ static int __devinit init_one_port(struct sbus_dev *sdev) | |||
| 322 | p->size = size; | 322 | p->size = size; |
| 323 | 323 | ||
| 324 | if ((err = request_irq(p->irq, parport_sunbpp_interrupt, | 324 | if ((err = request_irq(p->irq, parport_sunbpp_interrupt, |
| 325 | SA_SHIRQ, p->name, p)) != 0) { | 325 | IRQF_SHARED, p->name, p)) != 0) { |
| 326 | goto out_put_port; | 326 | goto out_put_port; |
| 327 | } | 327 | } |
| 328 | 328 | ||
