summaryrefslogtreecommitdiffstats
path: root/drivers/spi/spi-sh-hspi.c
diff options
context:
space:
mode:
authorGeert Uytterhoeven2019-01-18 15:11:05 +0100
committerMark Brown2019-01-18 19:20:16 +0100
commit88e7e0a8df1ff1ceac0a4b487e25860446bdbfb2 (patch)
tree28173013b72684dd14d30a8642ae835c2035b3d7 /drivers/spi/spi-sh-hspi.c
parentspi: ath79: Remove now useless code (diff)
downloadkernel-qcow2-linux-88e7e0a8df1ff1ceac0a4b487e25860446bdbfb2.tar.gz
kernel-qcow2-linux-88e7e0a8df1ff1ceac0a4b487e25860446bdbfb2.tar.xz
kernel-qcow2-linux-88e7e0a8df1ff1ceac0a4b487e25860446bdbfb2.zip
spi: sh-hspi: Remove error messages on out-of-memory conditions
There is no need to print an error message when memory allocations or related operations fail, as the core will take care of that. Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/spi/spi-sh-hspi.c')
-rw-r--r--drivers/spi/spi-sh-hspi.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/drivers/spi/spi-sh-hspi.c b/drivers/spi/spi-sh-hspi.c
index dc0926e43665..7159cb99dbe9 100644
--- a/drivers/spi/spi-sh-hspi.c
+++ b/drivers/spi/spi-sh-hspi.c
@@ -226,10 +226,8 @@ static int hspi_probe(struct platform_device *pdev)
}
master = spi_alloc_master(&pdev->dev, sizeof(*hspi));
- if (!master) {
- dev_err(&pdev->dev, "spi_alloc_master error.\n");
+ if (!master)
return -ENOMEM;
- }
clk = clk_get(&pdev->dev, NULL);
if (IS_ERR(clk)) {
@@ -248,7 +246,6 @@ static int hspi_probe(struct platform_device *pdev)
hspi->addr = devm_ioremap(hspi->dev,
res->start, resource_size(res));
if (!hspi->addr) {
- dev_err(&pdev->dev, "ioremap error.\n");
ret = -ENOMEM;
goto error1;
}