diff options
author | Wei Yongjun | 2013-08-18 16:11:12 +0800 |
---|---|---|
committer | Mark Brown | 2013-08-22 11:39:04 +0100 |
commit | 1f6301593d692c7038a1f4db55edd551917bcc17 (patch) | |
tree | 5221dc36cbbac792441c3bae27427b59253c067a /drivers/spi | |
parent | 86f8973c1053cb03e1b1b45989a4e144e05b1735 (diff) |
spi: spi-efm32: remove redundant dev_err call in efm32_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>
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/spi-efm32.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/spi/spi-efm32.c b/drivers/spi/spi-efm32.c index ba38452f646f..dbfef3dbed31 100644 --- a/drivers/spi/spi-efm32.c +++ b/drivers/spi/spi-efm32.c @@ -396,7 +396,6 @@ static int efm32_spi_probe(struct platform_device *pdev) ddata->base = devm_ioremap_resource(&pdev->dev, res); if (IS_ERR(ddata->base)) { ret = PTR_ERR(ddata->base); - dev_err(&pdev->dev, "failed to remap memory\n"); goto err; } |