diff options
author | Michael Opdenacker <michael.opdenacker@free-electrons.com> | 2013-10-06 02:47:55 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-10-07 03:05:09 -0400 |
commit | 2b4ef839d6253e13f218f4782b1a5a595a15c747 (patch) | |
tree | a2ab75e6921f94f15d929231b2e4a72fbc7949be /drivers/usb/host | |
parent | 4c015ba24bbe8558cce5925546abd590e4146a23 (diff) |
usb: host: uhci-platform: remove deprecated IRQF_DISABLED
This patch proposes to remove the use of the IRQF_DISABLED flag
It's a NOOP since 2.6.35 and it will be removed one day.
Signed-off-by: Michael Opdenacker <michael.opdenacker@free-electrons.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/host')
-rw-r--r-- | drivers/usb/host/uhci-platform.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/usb/host/uhci-platform.c b/drivers/usb/host/uhci-platform.c index d033a0ec7f0d..ded842bc6578 100644 --- a/drivers/usb/host/uhci-platform.c +++ b/drivers/usb/host/uhci-platform.c | |||
@@ -105,8 +105,7 @@ static int uhci_hcd_platform_probe(struct platform_device *pdev) | |||
105 | 105 | ||
106 | uhci->regs = hcd->regs; | 106 | uhci->regs = hcd->regs; |
107 | 107 | ||
108 | ret = usb_add_hcd(hcd, pdev->resource[1].start, IRQF_DISABLED | | 108 | ret = usb_add_hcd(hcd, pdev->resource[1].start, IRQF_SHARED); |
109 | IRQF_SHARED); | ||
110 | if (ret) | 109 | if (ret) |
111 | goto err_uhci; | 110 | goto err_uhci; |
112 | 111 | ||