Staging: rtl8192e: Fix void function return statements style warning
authorMahati Chamarthy <mahati.chamarthy@gmail.com>
Fri, 19 Sep 2014 18:26:02 +0000 (23:56 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 20 Sep 2014 00:14:30 +0000 (17:14 -0700)
This fixes the following checkpatch.pl warnings:
WARNING:  void function return statements are not generally useful

Signed-off-by: Mahati Chamarthy <mahati.chamarthy@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8192e/rtl819x_BAProc.c

index 7d67f8438c4a113be33fd2f29ebb0226e5e67804..6da57847a533ad273dfc3b09dbbaccd2eec5cf7b 100644 (file)
@@ -206,7 +206,6 @@ static void rtllib_send_ADDBAReq(struct rtllib_device *ieee, u8 *dst,
                RTLLIB_DEBUG(RTLLIB_DL_ERR, "alloc skb error in function"
                             " %s()\n", __func__);
        }
-       return;
 }
 
 static void rtllib_send_ADDBARsp(struct rtllib_device *ieee, u8 *dst,
@@ -220,7 +219,6 @@ static void rtllib_send_ADDBARsp(struct rtllib_device *ieee, u8 *dst,
        else
                RTLLIB_DEBUG(RTLLIB_DL_ERR, "alloc skb error in function"
                             " %s()\n", __func__);
-       return;
 }
 
 static void rtllib_send_DELBA(struct rtllib_device *ieee, u8 *dst,
@@ -235,7 +233,6 @@ static void rtllib_send_DELBA(struct rtllib_device *ieee, u8 *dst,
        else
                RTLLIB_DEBUG(RTLLIB_DL_ERR, "alloc skb error in function"
                             " %s()\n", __func__);
-       return ;
 }
 
 int rtllib_rx_ADDBAReq(struct rtllib_device *ieee, struct sk_buff *skb)
@@ -566,5 +563,4 @@ void RxBaInactTimeout(unsigned long data)
        rtllib_send_DELBA(ieee, pRxTs->TsCommonInfo.Addr,
                          &pRxTs->RxAdmittedBARecord, RX_DIR,
                          DELBA_REASON_TIMEOUT);
-       return ;
 }