]> git.karo-electronics.de Git - linux-beck.git/commit
Staging: iio: accel: sca3000: Fixed NULL comparison style
authorBhaktipriya Shridhar <bhaktipriya96@gmail.com>
Sun, 13 Dec 2015 15:15:13 +0000 (18:15 +0300)
committerJonathan Cameron <jic23@kernel.org>
Sat, 19 Dec 2015 16:40:55 +0000 (16:40 +0000)
commit34708a0ce860fc70112c285cfde717b1d1aed708
tree200c5256c3378ebc561deebbb4cfedb82d3c9f85
parent6e17c98a004c921e07bdecdb8cc2320488f88759
Staging: iio: accel: sca3000: Fixed NULL comparison style

The variable u8 **rx_p, is a pointer-to-pointer and hence the check
should
be "if (!*rx_p)" and not "if (!rx_p)".
In the earlier version, checkpatch.pl gave the following check, which
was incorrect:
CHECK: Comparison to NULL could be written "!rx_p"
+       if (*rx_p == NULL) {

Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/staging/iio/accel/sca3000_ring.c