Bhaktipriya Shridhar 34708a0ce8 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>
2015-12-19 16:40:55 +00:00
..
2015-11-05 13:15:12 -08:00
2015-11-06 11:50:24 -08:00
2015-11-15 20:02:47 -08:00
2015-10-24 19:30:12 -07:00
2015-11-04 21:40:53 -08:00
2015-11-23 14:51:50 -08:00