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>
This commit is contained in:
Wei Yongjun 2013-08-18 16:11:12 +08:00 committed by Mark Brown
parent 86f8973c10
commit 1f6301593d
1 changed files with 0 additions and 1 deletions

View File

@ -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;
}