mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-06 07:34:03 -04:00
staging: rtl8192e: Remove unused function rtllib_get_beacon()
Remove unused function rtllib_get_beacon(). Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/d76eeb7e273f4fcfec4ae8879e56d237363ebde2.1700860758.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
eca8285c01
commit
786b6f5764
@@ -1693,7 +1693,6 @@ void rtllib_softmac_start_protocol(struct rtllib_device *ieee);
|
||||
void rtllib_reset_queue(struct rtllib_device *ieee);
|
||||
void rtllib_wake_all_queues(struct rtllib_device *ieee);
|
||||
void rtllib_stop_all_queues(struct rtllib_device *ieee);
|
||||
struct sk_buff *rtllib_get_beacon(struct rtllib_device *ieee);
|
||||
|
||||
void notify_wx_assoc_event(struct rtllib_device *ieee);
|
||||
void rtllib_ps_tx_ack(struct rtllib_device *ieee, short success);
|
||||
|
||||
@@ -2180,27 +2180,6 @@ static struct sk_buff *rtllib_get_beacon_(struct rtllib_device *ieee)
|
||||
return skb;
|
||||
}
|
||||
|
||||
struct sk_buff *rtllib_get_beacon(struct rtllib_device *ieee)
|
||||
{
|
||||
struct sk_buff *skb;
|
||||
struct rtllib_probe_response *b;
|
||||
|
||||
skb = rtllib_get_beacon_(ieee);
|
||||
if (!skb)
|
||||
return NULL;
|
||||
|
||||
b = (struct rtllib_probe_response *)skb->data;
|
||||
b->header.seq_ctrl = cpu_to_le16(ieee->seq_ctrl[0] << 4);
|
||||
|
||||
if (ieee->seq_ctrl[0] == 0xFFF)
|
||||
ieee->seq_ctrl[0] = 0;
|
||||
else
|
||||
ieee->seq_ctrl[0]++;
|
||||
|
||||
return skb;
|
||||
}
|
||||
EXPORT_SYMBOL(rtllib_get_beacon);
|
||||
|
||||
void rtllib_softmac_stop_protocol(struct rtllib_device *ieee)
|
||||
{
|
||||
rtllib_stop_scan_syncro(ieee);
|
||||
|
||||
Reference in New Issue
Block a user