spi: sh-msiof: Remove useless memory allocation failure message
Printing an error on memory allocation failure is unnecessary. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
264c3e8de4
commit
e7ad4a7336
|
@ -1164,10 +1164,8 @@ static int sh_msiof_spi_probe(struct platform_device *pdev)
|
|||
int ret;
|
||||
|
||||
master = spi_alloc_master(&pdev->dev, sizeof(struct sh_msiof_spi_priv));
|
||||
if (master == NULL) {
|
||||
dev_err(&pdev->dev, "failed to allocate spi master\n");
|
||||
if (master == NULL)
|
||||
return -ENOMEM;
|
||||
}
|
||||
|
||||
p = spi_master_get_devdata(master);
|
||||
|
||||
|
|
Loading…
Reference in New Issue