mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-05-01 03:44:27 -04:00
staging: rtl8192e: Remove undefined function UpdateBeaconInterruptHandler
Remove function UpdateBeaconInterruptHandler as it is not defined. Signed-off-by: Philipp Hortmann <philipp.g.hortmann@gmail.com> Link: https://lore.kernel.org/r/7cc71096fb1e6fee755dd96de0095ef1fb6d51e1.1683960685.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
4e2ae4fffd
commit
b17bbcfbf3
@@ -739,8 +739,6 @@ static void _rtl92e_init_priv_handler(struct net_device *dev)
|
||||
priv->rtllib->rtllib_ips_leave = rtl92e_rtllib_ips_leave;
|
||||
|
||||
priv->rtllib->LedControlHandler = NULL;
|
||||
priv->rtllib->UpdateBeaconInterruptHandler = NULL;
|
||||
|
||||
priv->rtllib->ScanOperationBackupHandler = rtl92e_scan_op_backup;
|
||||
}
|
||||
|
||||
|
||||
@@ -1714,8 +1714,6 @@ struct rtllib_device {
|
||||
bool (*GetHalfNmodeSupportByAPsHandler)(struct net_device *dev);
|
||||
u8 (*rtllib_ap_sec_type)(struct rtllib_device *ieee);
|
||||
void (*InitialGainHandler)(struct net_device *dev, u8 Operation);
|
||||
void (*UpdateBeaconInterruptHandler)(struct net_device *dev,
|
||||
bool start);
|
||||
void (*ScanOperationBackupHandler)(struct net_device *dev,
|
||||
u8 Operation);
|
||||
void (*LedControlHandler)(struct net_device *dev,
|
||||
|
||||
@@ -2882,9 +2882,6 @@ void rtllib_start_protocol(struct rtllib_device *ieee)
|
||||
ieee->last_packet_time[i] = 0;
|
||||
}
|
||||
|
||||
if (ieee->UpdateBeaconInterruptHandler)
|
||||
ieee->UpdateBeaconInterruptHandler(ieee->dev, false);
|
||||
|
||||
ieee->wmm_acm = 0;
|
||||
/* if the user set the MAC of the ad-hoc cell and then
|
||||
* switch to managed mode, shall we make sure that association
|
||||
@@ -2894,9 +2891,6 @@ void rtllib_start_protocol(struct rtllib_device *ieee)
|
||||
if (ieee->iw_mode == IW_MODE_INFRA) {
|
||||
rtllib_start_bss(ieee);
|
||||
} else if (ieee->iw_mode == IW_MODE_ADHOC) {
|
||||
if (ieee->UpdateBeaconInterruptHandler)
|
||||
ieee->UpdateBeaconInterruptHandler(ieee->dev, true);
|
||||
|
||||
rtllib_start_ibss(ieee);
|
||||
|
||||
} else if (ieee->iw_mode == IW_MODE_MASTER) {
|
||||
|
||||
Reference in New Issue
Block a user