diff options
Diffstat (limited to 'drivers/usb')
-rw-r--r-- | drivers/usb/gadget/pxa2xx_udc.c | 2 | ||||
-rw-r--r-- | drivers/usb/host/ohci-ep93xx.c | 2 | ||||
-rw-r--r-- | drivers/usb/host/ohci-pnx4008.c | 2 | ||||
-rw-r--r-- | drivers/usb/host/ohci-pnx8550.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/drivers/usb/gadget/pxa2xx_udc.c b/drivers/usb/gadget/pxa2xx_udc.c index 2966bba1300b..27904a56494b 100644 --- a/drivers/usb/gadget/pxa2xx_udc.c +++ b/drivers/usb/gadget/pxa2xx_udc.c | |||
@@ -2613,7 +2613,7 @@ lubbock_fail0: | |||
2613 | #endif | 2613 | #endif |
2614 | if (vbus_irq) { | 2614 | if (vbus_irq) { |
2615 | retval = request_irq(vbus_irq, udc_vbus_irq, | 2615 | retval = request_irq(vbus_irq, udc_vbus_irq, |
2616 | SA_INTERRUPT | SA_SAMPLE_RANDOM, | 2616 | IRQF_DISABLED | IRQF_SAMPLE_RANDOM, |
2617 | driver_name, dev); | 2617 | driver_name, dev); |
2618 | if (retval != 0) { | 2618 | if (retval != 0) { |
2619 | printk(KERN_ERR "%s: can't get irq %i, err %d\n", | 2619 | printk(KERN_ERR "%s: can't get irq %i, err %d\n", |
diff --git a/drivers/usb/host/ohci-ep93xx.c b/drivers/usb/host/ohci-ep93xx.c index 44c60fba76e1..a68ce9d3c525 100644 --- a/drivers/usb/host/ohci-ep93xx.c +++ b/drivers/usb/host/ohci-ep93xx.c | |||
@@ -78,7 +78,7 @@ static int usb_hcd_ep93xx_probe(const struct hc_driver *driver, | |||
78 | 78 | ||
79 | ohci_hcd_init(hcd_to_ohci(hcd)); | 79 | ohci_hcd_init(hcd_to_ohci(hcd)); |
80 | 80 | ||
81 | retval = usb_add_hcd(hcd, pdev->resource[1].start, SA_INTERRUPT); | 81 | retval = usb_add_hcd(hcd, pdev->resource[1].start, IRQF_DISABLED); |
82 | if (retval == 0) | 82 | if (retval == 0) |
83 | return retval; | 83 | return retval; |
84 | 84 | ||
diff --git a/drivers/usb/host/ohci-pnx4008.c b/drivers/usb/host/ohci-pnx4008.c index 893b172384da..d601bbb9387b 100644 --- a/drivers/usb/host/ohci-pnx4008.c +++ b/drivers/usb/host/ohci-pnx4008.c | |||
@@ -421,7 +421,7 @@ static int __devinit usb_hcd_pnx4008_probe(struct platform_device *pdev) | |||
421 | ohci_hcd_init(ohci); | 421 | ohci_hcd_init(ohci); |
422 | 422 | ||
423 | dev_info(&pdev->dev, "at 0x%p, irq %d\n", hcd->regs, hcd->irq); | 423 | dev_info(&pdev->dev, "at 0x%p, irq %d\n", hcd->regs, hcd->irq); |
424 | ret = usb_add_hcd(hcd, irq, SA_INTERRUPT); | 424 | ret = usb_add_hcd(hcd, irq, IRQF_DISABLED); |
425 | if (ret == 0) | 425 | if (ret == 0) |
426 | return ret; | 426 | return ret; |
427 | 427 | ||
diff --git a/drivers/usb/host/ohci-pnx8550.c b/drivers/usb/host/ohci-pnx8550.c index de45eb0051a7..85fdfd2a7ad0 100644 --- a/drivers/usb/host/ohci-pnx8550.c +++ b/drivers/usb/host/ohci-pnx8550.c | |||
@@ -107,7 +107,7 @@ int usb_hcd_pnx8550_probe (const struct hc_driver *driver, | |||
107 | 107 | ||
108 | ohci_hcd_init(hcd_to_ohci(hcd)); | 108 | ohci_hcd_init(hcd_to_ohci(hcd)); |
109 | 109 | ||
110 | retval = usb_add_hcd(hcd, dev->resource[1].start, SA_INTERRUPT); | 110 | retval = usb_add_hcd(hcd, dev->resource[1].start, IRQF_DISABLED); |
111 | if (retval == 0) | 111 | if (retval == 0) |
112 | return retval; | 112 | return retval; |
113 | 113 | ||