diff options
author | Wei Yongjun <yongjun_wei@trendmicro.com.cn> | 2014-07-20 10:01:42 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-07-25 13:25:59 -0400 |
commit | 4e6fafee0289222105c40ddd7293da19b043122c (patch) | |
tree | f5b3058ea7b7db47d7cc83c367a57f7ecd2245a4 | |
parent | c4950143fcc0da75b89c11365a500c0879431d81 (diff) |
spi/rockchip: remove redundant dev_err call in rockchip_spi_probe()
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>
-rw-r--r-- | drivers/spi/spi-rockchip.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/spi/spi-rockchip.c b/drivers/spi/spi-rockchip.c index 05e18e9af813..47c9168f18b2 100644 --- a/drivers/spi/spi-rockchip.c +++ b/drivers/spi/spi-rockchip.c | |||
@@ -600,7 +600,6 @@ static int rockchip_spi_probe(struct platform_device *pdev) | |||
600 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); | 600 | mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
601 | rs->regs = devm_ioremap_resource(&pdev->dev, mem); | 601 | rs->regs = devm_ioremap_resource(&pdev->dev, mem); |
602 | if (IS_ERR(rs->regs)) { | 602 | if (IS_ERR(rs->regs)) { |
603 | dev_err(&pdev->dev, "Failed to map SPI region\n"); | ||
604 | ret = PTR_ERR(rs->regs); | 603 | ret = PTR_ERR(rs->regs); |
605 | goto err_ioremap_resource; | 604 | goto err_ioremap_resource; |
606 | } | 605 | } |