usb: musb: musbhsdma: fix IRQ check
authorSergei Shtylyov <sshtylyov@ru.mvista.com>
Mon, 20 Aug 2012 18:34:46 +0000 (22:34 +0400)
committerFelipe Balbi <balbi@ti.com>
Thu, 6 Sep 2012 16:52:28 +0000 (19:52 +0300)
commit7effdbd6512083e21c007edbaca0ceff4aa5159f
treee511f5e2f9e65c66b58db5fb3716129f0e07a7b4
parentff41aaa3b6c181a713078d8ad96da4ba822de436
usb: musb: musbhsdma: fix IRQ check

dma_controller_create() in this MUSB DMA driver only regards 0 as a wrong IRQ
number, despite platform_get_irq_byname() that it calls returns -ENXIO in that
case. It leads to calling request_irq() with a negative IRQ number, and when it
naturally fails, the following is printed to the console:

request_irq -6 failed!

and the DMA controller is not created.

Fix this function to filter out the error values as well as 0.

Signed-off-by: Sergei Shtylyov <sshtylyov@ru.mvista.com>
Signed-off-by: Felipe Balbi <balbi@ti.com>
drivers/usb/musb/musbhsdma.c
This page took 0.029467 seconds and 5 git commands to generate.