Commit e7ad4a73 authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Mark Brown

spi: sh-msiof: Remove useless memory allocation failure message

Printing an error on memory allocation failure is unnecessary.
Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 264c3e8d
...@@ -1164,10 +1164,8 @@ static int sh_msiof_spi_probe(struct platform_device *pdev) ...@@ -1164,10 +1164,8 @@ static int sh_msiof_spi_probe(struct platform_device *pdev)
int ret; int ret;
master = spi_alloc_master(&pdev->dev, sizeof(struct sh_msiof_spi_priv)); master = spi_alloc_master(&pdev->dev, sizeof(struct sh_msiof_spi_priv));
if (master == NULL) { if (master == NULL)
dev_err(&pdev->dev, "failed to allocate spi master\n");
return -ENOMEM; return -ENOMEM;
}
p = spi_master_get_devdata(master); p = spi_master_get_devdata(master);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment