staging: dwc2: don't pass IRQ_LEVEL to devm_request_irq

It seems this flag is intended to pass to irq_set_status_flags, not
request_irq, and is not available on all architectures. Its value
corresponds to IRQF_PROBE_SHARED, which shouldn't be needed for this
driver, so removing this flag should be safe.

Signed-off-by: Matthijs Kooijman <matthijs@stdin.nl>
Acked-by: Paul Zimmerman <paulz@synopsys.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Matthijs Kooijman 2013-04-11 17:52:40 +02:00 committed by Greg Kroah-Hartman
parent 55345fb9ff
commit 7c360aa7cd
1 changed files with 1 additions and 1 deletions

View File

@ -157,7 +157,7 @@ static int dwc2_driver_probe(struct pci_dev *dev,
dev_dbg(&dev->dev, "registering common handler for irq%d\n", dev->irq);
retval = devm_request_irq(&dev->dev, dev->irq, dwc2_handle_common_intr,
IRQF_SHARED | IRQ_LEVEL, dev_name(&dev->dev),
IRQF_SHARED, dev_name(&dev->dev),
hsotg);
if (retval)
dwc2_hcd_remove(hsotg);