Merge remote-tracking branch 'xen-tip/linux-next'
[deliverable/linux.git] / drivers / dma / mxs-dma.c
index 50e64e113ffb1b2071566f78a7f3ce070c95f4de..e217268c7098cc22f7ce39675fc45447d77e781d 100644 (file)
@@ -428,12 +428,10 @@ static int mxs_dma_alloc_chan_resources(struct dma_chan *chan)
                goto err_alloc;
        }
 
-       if (mxs_chan->chan_irq != NO_IRQ) {
-               ret = request_irq(mxs_chan->chan_irq, mxs_dma_int_handler,
-                                       0, "mxs-dma", mxs_dma);
-               if (ret)
-                       goto err_irq;
-       }
+       ret = request_irq(mxs_chan->chan_irq, mxs_dma_int_handler,
+                         0, "mxs-dma", mxs_dma);
+       if (ret)
+               goto err_irq;
 
        ret = clk_prepare_enable(mxs_dma->clk);
        if (ret)
This page took 0.03467 seconds and 5 git commands to generate.