Author: Bhaktipriya Shridhar <bhaktipriya96@gmail.com> 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 Signed-off-by: Greg Kroah-Hartman — drivers/staging/rtl8723au/core/rtw_sta_mgt.c | 6 +++— 1 file changed, 3 insertions(+), 3 deletions(-) diff –git a/drivers/staging/rtl8723au/core/rtw_sta_mgt.c b/drivers/staging/rtl8723au/core/rtw_sta_mgt.c index 5f85ee0..a9b778c …