mirror of
https://github.com/Fishwaldo/linux-bl808.git
synced 2025-06-05 22:25:16 +00:00
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
1 changed files with 1 additions and 3 deletions
|
@ -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…
Add table
Reference in a new issue