Re: [PATCH -next] spi: bcm2835aux: remove unneeded NULL check of devm_clk_get

2019-01-23 Thread Stefan Wahren
> YueHaibing hat am 23. Januar 2019 um 08:05 > geschrieben: > > > Fix a static code checker warning: > drivers/spi/spi-bcm2835aux.c:460 > bcm2835aux_spi_probe() warn: passing zero to 'PTR_ERR' > > In case of error, the function devm_clk_get() returns ERR_PTR() > and not returns NULL. > >

[PATCH -next] spi: bcm2835aux: remove unneeded NULL check of devm_clk_get

2019-01-22 Thread YueHaibing
Fix a static code checker warning: drivers/spi/spi-bcm2835aux.c:460 bcm2835aux_spi_probe() warn: passing zero to 'PTR_ERR' In case of error, the function devm_clk_get() returns ERR_PTR() and not returns NULL. Signed-off-by: YueHaibing --- drivers/spi/spi-bcm2835aux.c | 2 +- 1 file changed, 1