staging: rtl8188eu: cleanup comparsions to NULL in rtw_mlme_ext.c
authorMichael Straube <straube.linux@gmail.com>
Sat, 14 Dec 2019 10:09:54 +0000 (11:09 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 17 Dec 2019 13:08:41 +0000 (14:08 +0100)
commitdc497b4b0cd460de63413003cc64aa44cc2137e0
treefccd074f5facf2ef69154bfceb0e170f45d65575
parent6f4d22d76baa73c5bc99d669d68c862b60a04a3d
staging: rtl8188eu: cleanup comparsions to NULL in rtw_mlme_ext.c

Cleanup comparsions to NULL reported by checkpatch.
if (x == NULL) -> if (!x)
if (x != NULL) -> if (x)

Signed-off-by: Michael Straube <straube.linux@gmail.com>
Link: https://lore.kernel.org/r/20191214100955.16670-1-straube.linux@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/core/rtw_mlme_ext.c