mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-10 15:13:44 -04:00
staging: rtl8723bs: Remove unused function rtw_search_max_mac_id
Remove unused function rtw_search_max_mac_id. Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Reviewed-by: Dan Carpenter <dan.carpenter@linaro.org> Link: https://lore.kernel.org/r/34c5f2ef44641c5151dde12b161d3f0aa963de5c.1726339782.git.philipp.g.hortmann@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
dbe78c2d92
commit
62bbcb41d9
@@ -1822,21 +1822,3 @@ void rtw_release_macid(struct adapter *padapter, struct sta_info *psta)
|
||||
}
|
||||
spin_unlock_bh(&pdvobj->lock);
|
||||
}
|
||||
|
||||
/* For 8188E RA */
|
||||
u8 rtw_search_max_mac_id(struct adapter *padapter)
|
||||
{
|
||||
u8 max_mac_id = 0;
|
||||
struct dvobj_priv *pdvobj = adapter_to_dvobj(padapter);
|
||||
int i;
|
||||
|
||||
spin_lock_bh(&pdvobj->lock);
|
||||
for (i = (NUM_STA-1); i >= 0 ; i--) {
|
||||
if (pdvobj->macid[i] == true)
|
||||
break;
|
||||
}
|
||||
max_mac_id = i;
|
||||
spin_unlock_bh(&pdvobj->lock);
|
||||
|
||||
return max_mac_id;
|
||||
}
|
||||
|
||||
@@ -528,7 +528,6 @@ void rtw_camid_free(struct adapter *adapter, u8 cam_id);
|
||||
|
||||
extern void rtw_alloc_macid(struct adapter *padapter, struct sta_info *psta);
|
||||
extern void rtw_release_macid(struct adapter *padapter, struct sta_info *psta);
|
||||
extern u8 rtw_search_max_mac_id(struct adapter *padapter);
|
||||
|
||||
void report_join_res(struct adapter *padapter, int res);
|
||||
void report_survey_event(struct adapter *padapter, union recv_frame *precv_frame);
|
||||
|
||||
Reference in New Issue
Block a user