commit | c9d9602f36d0b4fb2ac55506cffddc797a3954fc | [log] [tgz] |
---|---|---|
author | Varsha Rao <rvarsha016@gmail.com> | Sat Mar 04 22:54:09 2017 +0530 |
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | Mon Mar 06 11:17:41 2017 +0100 |
tree | 94dc1214a7c136d3633bb7c1b19429cac7e126ab | |
parent | da79269d98a59bd1a129577da808da08df353ffa [diff] |
staging: media: atomisp: Replace NULL comparison. Replaced x == NULL with !x, by using the following coccinelle script: @disable is_null@ expression e; @@ -e==NULL +!e This patch fixes the checkpatch issue. Signed-off-by: Varsha Rao <rvarsha016@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>