usb: dwc3: omap: use request_threaded_irq()
authorRoger Quadros <rogerq@ti.com>
Wed, 11 May 2016 14:36:42 +0000 (17:36 +0300)
committerFelipe Balbi <felipe.balbi@linux.intel.com>
Mon, 20 Jun 2016 09:32:46 +0000 (12:32 +0300)
commit3f586c92d87778bc3d550435a31f8ac685541121
tree92b7f26825bc3ce9f8ccda665b6f0b6d80e4cf3b
parent475c8beb35e129c2f33182f476373db04008892e
usb: dwc3: omap: use request_threaded_irq()

We intend to share this interrupt with the OTG driver an to ensure
that irqflags match for the shared interrupt handlers we use
request_threaded_irq()

If we don't use request_treaded_irq() then forced threaded irq will
set IRQF_ONESHOT and this won't match with the OTG IRQ handler's
IRQ flags.

NOTE: OTG IRQ handler is yet to be added. This is a preparatory step.

Signed-off-by: Roger Quadros <rogerq@ti.com>
Signed-off-by: Felipe Balbi <felipe.balbi@linux.intel.com>
drivers/usb/dwc3/dwc3-omap.c