Remove comparison to NULL in file rtl8723b_hal_init.c. Suggested by
Coccinelle.
Signed-off-by: Himadri Pandya <himadri18.07@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
        }
 
        efuseTbl = rtw_malloc(EFUSE_MAX_MAP_LEN);
-       if (efuseTbl == NULL) {
+       if (!efuseTbl) {
                DBG_8192C("%s: alloc efuseTbl fail!\n", __func__);
                return;
        }
        s32     ret;
 
 
-       if (data == NULL)
+       if (!data)
                return false;
 
        EFUSE_GetEfuseDefinition(padapter, EFUSE_WIFI, TYPE_EFUSE_MAX_SECTION, &max_section, bPseudoTest);
        s32 ret = _SUCCESS;
        u8 index = 0;
 
-       if (pC2hEvent == NULL) {
+       if (!pC2hEvent) {
                DBG_8192C("%s(): pC2hEventis NULL\n", __func__);
                ret = _FAIL;
                goto exit;
 {
        u8 index = 0;
 
-       if (c2hBuf == NULL) {
+       if (!c2hBuf) {
                DBG_8192C("%s c2hbuff is NULL\n", __func__);
                return;
        }