staging: rtl8192e: Remove unneeded void return

Fixes "void function return statements are not generally
useful"checkpatch.pl warning

Signed-off-by: Melike Yurtoglu <aysemelikeyurtoglu@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Melike Yurtoglu 2014-10-01 00:21:54 +03:00 committed by Greg Kroah-Hartman
parent 4dc5afdeff
commit 66abf01f1d

View file

@ -354,7 +354,6 @@ FORCED_AGG_SETTING:
tcb_desc->ampdu_factor = 0; tcb_desc->ampdu_factor = 0;
break; break;
} }
return;
} }
static void rtllib_qurey_ShortPreambleMode(struct rtllib_device *ieee, static void rtllib_qurey_ShortPreambleMode(struct rtllib_device *ieee,
@ -366,7 +365,6 @@ static void rtllib_qurey_ShortPreambleMode(struct rtllib_device *ieee,
else if (ieee->current_network.capability & else if (ieee->current_network.capability &
WLAN_CAPABILITY_SHORT_PREAMBLE) WLAN_CAPABILITY_SHORT_PREAMBLE)
tcb_desc->bUseShortPreamble = true; tcb_desc->bUseShortPreamble = true;
return;
} }
static void rtllib_query_HTCapShortGI(struct rtllib_device *ieee, static void rtllib_query_HTCapShortGI(struct rtllib_device *ieee,
@ -408,7 +406,6 @@ static void rtllib_query_BandwidthMode(struct rtllib_device *ieee,
if (pHTInfo->bCurBW40MHz && pHTInfo->bCurTxBW40MHz && if (pHTInfo->bCurBW40MHz && pHTInfo->bCurTxBW40MHz &&
!ieee->bandwidth_auto_switch.bforced_tx20Mhz) !ieee->bandwidth_auto_switch.bforced_tx20Mhz)
tcb_desc->bPacketBW = true; tcb_desc->bPacketBW = true;
return;
} }
static void rtllib_query_protectionmode(struct rtllib_device *ieee, static void rtllib_query_protectionmode(struct rtllib_device *ieee,