staging: rtl8723au: core: rtw_security: Change form of NULL comparisons
commit0cd8f4396e3204cff40208221a92cd6322d2b721
authorBhaktipriya Shridhar <bhaktipriya96@gmail.com>
Sat, 5 Mar 2016 21:19:46 +0000 (6 02:49 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 12 Mar 2016 06:09:09 +0000 (11 22:09 -0800)
treecce074c414b8b09d08471c7facc918a9befc43fe
parentb747a1e936b614afd4a5ba5b51ae8d00ea53de2c
staging: rtl8723au: core: rtw_security: Change form of NULL comparisons

Change null comparisons of the form x == NULL to !x.
This was done using Coccinelle.

@@
expression e;
@@
- e == NULL
+ !e

Signed-off-by: Bhaktipriya Shridhar <bhaktipriya96@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723au/core/rtw_security.c