]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
mxs/spi: fix error return code in mxs_spi_probe()
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>
Wed, 3 Apr 2013 13:06:40 +0000 (21:06 +0800)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Wed, 3 Apr 2013 17:37:38 +0000 (18:37 +0100)
Fix to return a negative error code from the error handling
case instead of 0, as returned elsewhere in this function.

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/spi/spi-mxs.c

index 22a0af0147fb52be3fcb4111efaaafce27b80663..a1d5778e2bbb9ecec1a41a0e101a93f0ebf6e508 100644 (file)
@@ -612,6 +612,7 @@ static int mxs_spi_probe(struct platform_device *pdev)
        ssp->dmach = dma_request_channel(mask, mxs_ssp_dma_filter, ssp);
        if (!ssp->dmach) {
                dev_err(ssp->dev, "Failed to request DMA\n");
+               ret = -ENODEV;
                goto out_master_free;
        }