summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Arfvidson <erik.arfvidson@unisys.com>2016-02-08 10:41:42 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2016-02-11 19:37:15 -0800
commit277f3f718d395653eb9f21fbda8900a65d7f2bd9 (patch)
tree49eb406362d37d8a287e262e878714b6e7c09152
parent1e3ab5219764d335391e0e673dbfcba286fc1616 (diff)
downloadop-kernel-dev-277f3f718d395653eb9f21fbda8900a65d7f2bd9.zip
op-kernel-dev-277f3f718d395653eb9f21fbda8900a65d7f2bd9.tar.gz
staging: unisys: Fix NULL comparison vbusdeviceinfo.h
This patches resolves the NULL comparison checkpatch warnings Signed-off-by: Erik Arfvidson <erik.arfvidson@unisys.com> Signed-off-by: Benjamin Romer <benjamin.romer@unisys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/unisys/visorbus/vbusdeviceinfo.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/staging/unisys/visorbus/vbusdeviceinfo.h b/drivers/staging/unisys/visorbus/vbusdeviceinfo.h
index f59fd8a..3216975 100644
--- a/drivers/staging/unisys/visorbus/vbusdeviceinfo.h
+++ b/drivers/staging/unisys/visorbus/vbusdeviceinfo.h
@@ -62,7 +62,7 @@ vbuschannel_sanitize_buffer(char *p, int remain, char *src, int srcmax)
p++;
remain--;
chars++;
- } else if (p == NULL) {
+ } else if (!p) {
chars++;
}
nonprintable_streak = 0;
@@ -72,7 +72,7 @@ vbuschannel_sanitize_buffer(char *p, int remain, char *src, int srcmax)
p++;
remain--;
chars++;
- } else if (p == NULL) {
+ } else if (!p) {
chars++;
}
} else {
OpenPOWER on IntegriCloud