1
0
Fork 0

Staging: rtl8192e: Fix void function return statements style warning

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>
wifi-calibration
Mahati Chamarthy 2014-09-19 23:56:02 +05:30 committed by Greg Kroah-Hartman
parent 59422a74b5
commit 5110e40260
1 changed files with 0 additions and 4 deletions

View 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 ;
}