diff options
author | Eva Rachel Retuya <eraretuya@gmail.com> | 2016-09-21 12:59:29 +0800 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2016-09-22 11:54:47 +0200 |
commit | ce35e9be62837d8242472264b511f9c27992adfa (patch) | |
tree | bd562b6b619917ff1b3612d6c3185f0d48aadc92 /kernel/gcov | |
parent | 0540609fe217c3eed5804bcc095b0c41db5e63b0 (diff) | |
download | blackbird-op-linux-ce35e9be62837d8242472264b511f9c27992adfa.tar.gz blackbird-op-linux-ce35e9be62837d8242472264b511f9c27992adfa.zip |
staging: greybus: camera: simplify NULL test
Replace direct comparisons to NULL i.e. 'x == NULL' with '!x' for consistency.
Coccinelle semantic patch used:
@@
identifier func;
expression x;
statement Z;
@@
x = func(...);
if (
(
+ !
x
- == NULL
|
+ !
- NULL ==
x
)
) Z
Signed-off-by: Eva Rachel Retuya <eraretuya@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'kernel/gcov')
0 files changed, 0 insertions, 0 deletions