staging: rtl8192u: make in ieee80211/rtl819x_BAProc.c some local functions static
Make some local functions (ActivateBAEntry, DeActivateBAEntry, TxTsDeleteBA ,RxTsDeleteBA and ieee80211_send_DELBA) static and fix coding style in this function declarations when It is necessary Fix the following sparse warnings in ieee80211/rtl819x_BAProc.c drivers/staging/rtl8192u/ieee80211/rtl819x_BAProc.c:16:6: warning: symbol 'ActivateBAEntry' was not declared. Should it be static? drivers/staging/rtl8192u/ieee80211/rtl819x_BAProc.c:28:6: warning: symbol 'DeActivateBAEntry' was not declared. Should it be static? drivers/staging/rtl8192u/ieee80211/rtl819x_BAProc.c:40:4: warning: symbol 'TxTsDeleteBA' was not declared. Should it be static? drivers/staging/rtl8192u/ieee80211/rtl819x_BAProc.c:70:4: warning: symbol 'RxTsDeleteBA' was not declared. Should it be static? drivers/staging/rtl8192u/ieee80211/rtl819x_BAProc.c:310:6: warning: symbol 'ieee80211_send_DELBA' was not declared. Should it be static? Signed-off-by: Ana Rey <anarey@gmail.com> Signed-off-by: Peter P Waskiewicz Jr <peter.p.waskiewicz.jr@intel.com>
This commit is contained in:
parent
140cdd73c1
commit
51296cdf9d
@ -13,7 +13,7 @@
|
|||||||
* u16 Time //indicate time delay.
|
* u16 Time //indicate time delay.
|
||||||
* output: none
|
* output: none
|
||||||
********************************************************************************************************************/
|
********************************************************************************************************************/
|
||||||
void ActivateBAEntry(struct ieee80211_device *ieee, PBA_RECORD pBA, u16 Time)
|
static void ActivateBAEntry(struct ieee80211_device *ieee, PBA_RECORD pBA, u16 Time)
|
||||||
{
|
{
|
||||||
pBA->bValid = true;
|
pBA->bValid = true;
|
||||||
if(Time != 0)
|
if(Time != 0)
|
||||||
@ -25,7 +25,7 @@ void ActivateBAEntry(struct ieee80211_device *ieee, PBA_RECORD pBA, u16 Time)
|
|||||||
* input: PBA_RECORD pBA //BA entry to be disabled
|
* input: PBA_RECORD pBA //BA entry to be disabled
|
||||||
* output: none
|
* output: none
|
||||||
********************************************************************************************************************/
|
********************************************************************************************************************/
|
||||||
void DeActivateBAEntry( struct ieee80211_device *ieee, PBA_RECORD pBA)
|
static void DeActivateBAEntry(struct ieee80211_device *ieee, PBA_RECORD pBA)
|
||||||
{
|
{
|
||||||
pBA->bValid = false;
|
pBA->bValid = false;
|
||||||
del_timer_sync(&pBA->Timer);
|
del_timer_sync(&pBA->Timer);
|
||||||
@ -37,7 +37,7 @@ void DeActivateBAEntry( struct ieee80211_device *ieee, PBA_RECORD pBA)
|
|||||||
* output: none
|
* output: none
|
||||||
* notice: As PTX_TS_RECORD structure will be defined in QOS, so wait to be merged. //FIXME
|
* notice: As PTX_TS_RECORD structure will be defined in QOS, so wait to be merged. //FIXME
|
||||||
********************************************************************************************************************/
|
********************************************************************************************************************/
|
||||||
u8 TxTsDeleteBA( struct ieee80211_device *ieee, PTX_TS_RECORD pTxTs)
|
static u8 TxTsDeleteBA(struct ieee80211_device *ieee, PTX_TS_RECORD pTxTs)
|
||||||
{
|
{
|
||||||
PBA_RECORD pAdmittedBa = &pTxTs->TxAdmittedBARecord; //These two BA entries must exist in TS structure
|
PBA_RECORD pAdmittedBa = &pTxTs->TxAdmittedBARecord; //These two BA entries must exist in TS structure
|
||||||
PBA_RECORD pPendingBa = &pTxTs->TxPendingBARecord;
|
PBA_RECORD pPendingBa = &pTxTs->TxPendingBARecord;
|
||||||
@ -67,7 +67,7 @@ u8 TxTsDeleteBA( struct ieee80211_device *ieee, PTX_TS_RECORD pTxTs)
|
|||||||
* output: none
|
* output: none
|
||||||
* notice: As PRX_TS_RECORD structure will be defined in QOS, so wait to be merged. //FIXME, same with above
|
* notice: As PRX_TS_RECORD structure will be defined in QOS, so wait to be merged. //FIXME, same with above
|
||||||
********************************************************************************************************************/
|
********************************************************************************************************************/
|
||||||
u8 RxTsDeleteBA( struct ieee80211_device *ieee, PRX_TS_RECORD pRxTs)
|
static u8 RxTsDeleteBA(struct ieee80211_device *ieee, PRX_TS_RECORD pRxTs)
|
||||||
{
|
{
|
||||||
PBA_RECORD pBa = &pRxTs->RxAdmittedBARecord;
|
PBA_RECORD pBa = &pRxTs->RxAdmittedBARecord;
|
||||||
u8 bSendDELBA = false;
|
u8 bSendDELBA = false;
|
||||||
@ -307,7 +307,9 @@ static void ieee80211_send_ADDBARsp(struct ieee80211_device *ieee, u8 *dst,
|
|||||||
* notice: If any possible, please hide pBA in ieee. And temporarily use Manage Queue as softmac_mgmt_xmit() usually does
|
* notice: If any possible, please hide pBA in ieee. And temporarily use Manage Queue as softmac_mgmt_xmit() usually does
|
||||||
********************************************************************************************************************/
|
********************************************************************************************************************/
|
||||||
|
|
||||||
void ieee80211_send_DELBA(struct ieee80211_device *ieee, u8 *dst, PBA_RECORD pBA, TR_SELECT TxRxSelect, u16 ReasonCode)
|
static void ieee80211_send_DELBA(struct ieee80211_device *ieee, u8 *dst,
|
||||||
|
PBA_RECORD pBA, TR_SELECT TxRxSelect,
|
||||||
|
u16 ReasonCode)
|
||||||
{
|
{
|
||||||
struct sk_buff *skb = NULL;
|
struct sk_buff *skb = NULL;
|
||||||
skb = ieee80211_DELBA(ieee, dst, pBA, TxRxSelect, ReasonCode); //construct ACT_ADDBARSP frames
|
skb = ieee80211_DELBA(ieee, dst, pBA, TxRxSelect, ReasonCode); //construct ACT_ADDBARSP frames
|
||||||
|
Loading…
Reference in New Issue
Block a user