dma: imx-dma: fix signedness bug
[linux-2.6-block.git] / drivers / dma / imx-dma.c
index 346be6218058e849a93d5f2e644ec3fd91b4a7a1..f629e4961af593f0ab5d3697fce77b306ab1ed9b 100644 (file)
@@ -335,8 +335,10 @@ static int __init imxdma_probe(struct platform_device *pdev)
 
                imxdmac->imxdma_channel = imx_dma_request_by_prio("dmaengine",
                                DMA_PRIO_MEDIUM);
-               if (imxdmac->channel < 0)
+               if ((int)imxdmac->channel < 0) {
+                       ret = -ENODEV;
                        goto err_init;
+               }
 
                imx_dma_setup_handlers(imxdmac->imxdma_channel,
                       imxdma_irq_handler, imxdma_err_handler, imxdmac);