[PATCH] Staging: iio: accel: Fixed NULL comparison style

2015-12-13 Thread Bhaktipriya Shridhar
This patch fixes checkpatch.pl check: CHECK: Comparison to NULL could be written "!rx_p" + if (*rx_p == NULL) { Signed-off-by: Bhaktipriya Shridhar --- drivers/staging/iio/accel/sca3000_ring.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

Re: [PATCH] Staging: iio: accel: Fixed NULL comparison style

2015-12-13 Thread Dan Carpenter
On Sun, Dec 13, 2015 at 12:54:27PM +0300, Bhaktipriya Shridhar wrote: > This patch fixes checkpatch.pl check: > CHECK: Comparison to NULL could be written "!rx_p" > + if (*rx_p == NULL) { > Actually it should be "if (!*rx_p)". checkpatch.pl appears to have a bug here. regards, dan