]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/commitdiff
staging: rtl8188eu: core: rtw_recv.c: Modify return type suggested by Coccinelle.
authorSanjana Sanikommu <sanjana99reddy99@gmail.com>
Wed, 20 Mar 2019 15:37:18 +0000 (21:07 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 21 Mar 2019 07:25:00 +0000 (08:25 +0100)
The last two lines in the function could
be compressed into one. Avoid usage of local variable.

Signed-off-by: Sanjana Sanikommu <sanjana99reddy99@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8188eu/core/rtw_recv.c

index 90eb1a0250517fae36e22a3fbc965b0424759963..606a9f51508a53922ce2ed6e159cec155dea49a5 100644 (file)
@@ -1859,8 +1859,7 @@ static int process_recv_indicatepkts(struct adapter *padapter,
                        /*  including perform A-MPDU Rx Ordering Buffer Control */
                        if ((!padapter->bDriverStopped) &&
                            (!padapter->bSurpriseRemoved)) {
-                               retval = _FAIL;
-                               return retval;
+                               return _FAIL;
                        }
                }
        } else { /* B/G mode */
@@ -1879,8 +1878,7 @@ static int process_recv_indicatepkts(struct adapter *padapter,
                        RT_TRACE(_module_rtl871x_recv_c_, _drv_notice_, ("@@@@ %s- recv_func free_indicatepkt\n", __func__));
 
                        RT_TRACE(_module_rtl871x_recv_c_, _drv_notice_, ("recv_func:bDriverStopped(%d) OR bSurpriseRemoved(%d)", padapter->bDriverStopped, padapter->bSurpriseRemoved));
-                       retval = _FAIL;
-                       return retval;
+                       return _FAIL;
                }
        }