mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-26 22:24:09 +08:00
staging: iio: resolver: fix comparison to NULL
Remove comparison of spi->dev.platform_data to NULL by replacing it with '!spi->dev.platform_data' as checkpatch suggested: CHECK: Comparison to NULL could be written "!spi->dev.platform_data" Signed-off-by: Eva Rachel Retuya <eraretuya@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
c7e426d1c5
commit
b5b6e7beb0
@ -675,7 +675,7 @@ static int ad2s1210_probe(struct spi_device *spi)
|
||||
struct ad2s1210_state *st;
|
||||
int ret;
|
||||
|
||||
if (spi->dev.platform_data == NULL)
|
||||
if (!spi->dev.platform_data)
|
||||
return -EINVAL;
|
||||
|
||||
indio_dev = devm_iio_device_alloc(&spi->dev, sizeof(*st));
|
||||
|
Loading…
Reference in New Issue
Block a user