1
0
Fork 0

Staging: iio: Simplify NULL pointer condition

Replace NULL comparrison with its shorter form.
Done with coccinelle:

@replace_rule@
expression e;
@@

-e == NULL
+ !e

Signed-off-by: Cristina Opriceana <cristina.opriceana@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
hifive-unleashed-5.1
Cristina Opriceana 2015-03-19 21:04:42 +02:00 committed by Greg Kroah-Hartman
parent 2c4b2980ae
commit 9fb163f49e
1 changed files with 1 additions and 1 deletions

View File

@ -579,7 +579,7 @@ int hmc5843_common_probe(struct device *dev, struct regmap *regmap,
int ret;
indio_dev = devm_iio_device_alloc(dev, sizeof(*data));
if (indio_dev == NULL)
if (!indio_dev)
return -ENOMEM;
dev_set_drvdata(dev, indio_dev);