Staging:lustre:lustre:llite:Remove explicit NULL comparision
authorBhumika Goyal <bhumirks@gmail.com>
Sat, 23 Jan 2016 13:11:53 +0000 (18:41 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 3 Feb 2016 22:44:02 +0000 (14:44 -0800)
commit61382aa809e48dcd09109becf6b09715a8f492ac
treebe8f14ffd666791fbebef534d2a7939922eb43d6
parent6ae07f1b38d18589fdeaa150b86252f02b2750fb
Staging:lustre:lustre:llite:Remove explicit NULL comparision

Replaced explicit NULL comparision with its simplier form.
Found using coccinelle:

@replace_rule@
expression e;
@@

-e == NULL
+ !e

Signed-off-by: Bhumika Goyal <bhumirks@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/lustre/lustre/llite/dcache.c
This page took 0.024158 seconds and 5 git commands to generate.