diff options
author | Yong Zhang <yong.zhang0@gmail.com> | 2011-09-07 04:10:52 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2011-09-18 04:39:36 -0400 |
commit | b5dd18d8747010e3f3eb1cc76a49f94291938559 (patch) | |
tree | 24ad7002204ff4642454ba546a8a1156231914d7 /drivers/usb/host/isp1760-if.c | |
parent | 41f05dedeabb0e2cb03734de383db3f0ddecf9e0 (diff) |
USB: irq: Remove IRQF_DISABLED
This flag is a NOOP and can be removed now.
Signed-off-by: Yong Zhang <yong.zhang0@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/usb/host/isp1760-if.c')
-rw-r--r-- | drivers/usb/host/isp1760-if.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/usb/host/isp1760-if.c b/drivers/usb/host/isp1760-if.c index 7ee30056f373..d2f6b2dd7405 100644 --- a/drivers/usb/host/isp1760-if.c +++ b/drivers/usb/host/isp1760-if.c | |||
@@ -79,7 +79,7 @@ static int of_isp1760_probe(struct platform_device *dev) | |||
79 | devflags |= ISP1760_FLAG_DREQ_POL_HIGH; | 79 | devflags |= ISP1760_FLAG_DREQ_POL_HIGH; |
80 | 80 | ||
81 | hcd = isp1760_register(memory.start, res_len, virq, | 81 | hcd = isp1760_register(memory.start, res_len, virq, |
82 | IRQF_SHARED | IRQF_DISABLED, &dev->dev, dev_name(&dev->dev), | 82 | IRQF_SHARED, &dev->dev, dev_name(&dev->dev), |
83 | devflags); | 83 | devflags); |
84 | if (IS_ERR(hcd)) { | 84 | if (IS_ERR(hcd)) { |
85 | ret = PTR_ERR(hcd); | 85 | ret = PTR_ERR(hcd); |
@@ -240,7 +240,7 @@ static int __devinit isp1761_pci_probe(struct pci_dev *dev, | |||
240 | 240 | ||
241 | dev->dev.dma_mask = NULL; | 241 | dev->dev.dma_mask = NULL; |
242 | hcd = isp1760_register(pci_mem_phy0, memlength, dev->irq, | 242 | hcd = isp1760_register(pci_mem_phy0, memlength, dev->irq, |
243 | IRQF_SHARED | IRQF_DISABLED, &dev->dev, dev_name(&dev->dev), | 243 | IRQF_SHARED, &dev->dev, dev_name(&dev->dev), |
244 | devflags); | 244 | devflags); |
245 | if (IS_ERR(hcd)) { | 245 | if (IS_ERR(hcd)) { |
246 | ret_status = -ENODEV; | 246 | ret_status = -ENODEV; |
@@ -313,7 +313,7 @@ static int __devinit isp1760_plat_probe(struct platform_device *pdev) | |||
313 | resource_size_t mem_size; | 313 | resource_size_t mem_size; |
314 | struct isp1760_platform_data *priv = pdev->dev.platform_data; | 314 | struct isp1760_platform_data *priv = pdev->dev.platform_data; |
315 | unsigned int devflags = 0; | 315 | unsigned int devflags = 0; |
316 | unsigned long irqflags = IRQF_SHARED | IRQF_DISABLED; | 316 | unsigned long irqflags = IRQF_SHARED; |
317 | 317 | ||
318 | mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 318 | mem_res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
319 | if (!mem_res) { | 319 | if (!mem_res) { |