spi/rockchip: remove redundant dev_err call in rockchip_spi_probe()
authorWei Yongjun <yongjun_wei@trendmicro.com.cn>
Sun, 20 Jul 2014 14:01:42 +0000 (22:01 +0800)
committerMark Brown <broonie@linaro.org>
Fri, 25 Jul 2014 17:25:59 +0000 (18:25 +0100)
There is a error message within devm_ioremap_resource
already, so remove the dev_err call to avoid redundant
error message.

Signed-off-by: Wei Yongjun <yongjun_wei@trendmicro.com.cn>
Signed-off-by: Mark Brown <broonie@linaro.org>
drivers/spi/spi-rockchip.c

index 05e18e9..47c9168 100644 (file)
@@ -600,7 +600,6 @@ static int rockchip_spi_probe(struct platform_device *pdev)
        mem = platform_get_resource(pdev, IORESOURCE_MEM, 0);
        rs->regs = devm_ioremap_resource(&pdev->dev, mem);
        if (IS_ERR(rs->regs)) {
-               dev_err(&pdev->dev, "Failed to map SPI region\n");
                ret =  PTR_ERR(rs->regs);
                goto err_ioremap_resource;
        }