diff options
author | Geert Uytterhoeven <geert+renesas@glider.be> | 2017-01-04 11:15:07 +0100 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2017-01-04 17:39:21 +0000 |
commit | ffcfae3823751c72b615b57f700e563667002d09 (patch) | |
tree | 8601319395412dec49fdf59f64cb525f7b177604 /drivers/spi/spi-rspi.c | |
parent | fafd67940774733fa97f4b09412aea6981b82e0a (diff) |
spi: rspi: 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>
Diffstat (limited to 'drivers/spi/spi-rspi.c')
-rw-r--r-- | drivers/spi/spi-rspi.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/spi/spi-rspi.c b/drivers/spi/spi-rspi.c index 9daf50031737..58b7e68013f3 100644 --- a/drivers/spi/spi-rspi.c +++ b/drivers/spi/spi-rspi.c @@ -1227,10 +1227,8 @@ static int rspi_probe(struct platform_device *pdev) const struct spi_ops *ops; master = spi_alloc_master(&pdev->dev, sizeof(struct rspi_data)); - if (master == NULL) { - dev_err(&pdev->dev, "spi_alloc_master error.\n"); + if (master == NULL) return -ENOMEM; - } of_id = of_match_device(rspi_of_match, &pdev->dev); if (of_id) { |