Skip to content

Commit

Permalink
spi: dw: Drop duplicate error message when remap resource
Browse files Browse the repository at this point in the history
devm_platform_ioremap_resource() will issue a message in the error case.
Thus, no need to duplicate in the driver.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20200512110315.58845-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
  • Loading branch information
Andy Shevchenko authored and Mark Brown committed May 12, 2020
1 parent 5483ef0 commit afb7f56
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions drivers/spi/spi-dw-mmio.c
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,8 @@ static int dw_spi_mmio_probe(struct platform_device *pdev)

/* Get basic io resource and map it */
dws->regs = devm_platform_ioremap_resource(pdev, 0);
if (IS_ERR(dws->regs)) {
dev_err(&pdev->dev, "SPI region map failed\n");
if (IS_ERR(dws->regs))
return PTR_ERR(dws->regs);
}

dws->irq = platform_get_irq(pdev, 0);
if (dws->irq < 0)
Expand Down

0 comments on commit afb7f56

Please sign in to comment.