Message ID | 1557480060-15311-1-git-send-email-na-hoan@jinso.co.jp (mailing list archive) |
---|---|
State | Accepted |
Commit | bf93b9512645d2b2f42740ba4918b55d7b5f40a7 |
Headers | show |
Series | spi: bcm2835aux: Remove spi_alloc_master() error printing | expand |
On Fri, May 10, 2019 at 11:25 AM Nguyen An Hoan <na-hoan@jinso.co.jp> wrote: > From: Hoan Nguyen An <na-hoan@jinso.co.jp> > > Printing an error on memory allocation failure is unnecessary, > as the memory allocation core code already takes care of that. > > Signed-off-by: Hoan Nguyen An <na-hoan@jinso.co.jp> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Gr{oetje,eeting}s, Geert
> On 10.05.2019, at 11:21, Nguyen An Hoan <na-hoan@jinso.co.jp> wrote: > > From: Hoan Nguyen An <na-hoan@jinso.co.jp> > > Printing an error on memory allocation failure is unnecessary, > as the memory allocation core code already takes care of that. > > Signed-off-by: Hoan Nguyen An <na-hoan@jinso.co.jp> Reviewed-by: Martin Sperl <kernel@martin.sperl.org>
diff --git a/drivers/spi/spi-bcm2835aux.c b/drivers/spi/spi-bcm2835aux.c index f7e0548..64d17f7 100644 --- a/drivers/spi/spi-bcm2835aux.c +++ b/drivers/spi/spi-bcm2835aux.c @@ -430,10 +430,8 @@ static int bcm2835aux_spi_probe(struct platform_device *pdev) int err; master = spi_alloc_master(&pdev->dev, sizeof(*bs)); - if (!master) { - dev_err(&pdev->dev, "spi_alloc_master() failed\n"); + if (!master) return -ENOMEM; - } platform_set_drvdata(pdev, master); master->mode_bits = (SPI_CPOL | SPI_CS_HIGH | SPI_NO_CS);