mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-09 07:23:14 +00:00
Staging: rtl8192e: Rename function rtllib_DisableNetMonitorMode()
Rename function rtllib_DisableNetMonitorMode to rtllib_disable_net_monitor_mode to fix checkpatch warning Avoid CamelCase. Signed-off-by: Tree Davies <tdavies@darkphysics.net> Link: https://lore.kernel.org/r/20231223015942.418263-21-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
53156632ee
commit
9ebffbe2ad
@ -1678,7 +1678,7 @@ void rtllib_start_protocol(struct rtllib_device *ieee);
|
||||
void rtllib_stop_protocol(struct rtllib_device *ieee);
|
||||
|
||||
void rtllib_EnableNetMonitorMode(struct net_device *dev, bool init_state);
|
||||
void rtllib_DisableNetMonitorMode(struct net_device *dev, bool init_state);
|
||||
void rtllib_disable_net_monitor_mode(struct net_device *dev, bool init_state);
|
||||
|
||||
void rtllib_softmac_stop_protocol(struct rtllib_device *ieee);
|
||||
void rtllib_softmac_start_protocol(struct rtllib_device *ieee);
|
||||
|
@ -361,7 +361,7 @@ void rtllib_EnableNetMonitorMode(struct net_device *dev,
|
||||
/* Disables network monitor mode. Only packets destinated to
|
||||
* us will be received.
|
||||
*/
|
||||
void rtllib_DisableNetMonitorMode(struct net_device *dev,
|
||||
void rtllib_disable_net_monitor_mode(struct net_device *dev,
|
||||
bool init_state)
|
||||
{
|
||||
struct rtllib_device *ieee = netdev_priv_rsl(dev);
|
||||
|
@ -270,7 +270,7 @@ int rtllib_wx_set_mode(struct rtllib_device *ieee, struct iw_request_info *a,
|
||||
} else {
|
||||
ieee->dev->type = ARPHRD_ETHER;
|
||||
if (ieee->iw_mode == IW_MODE_MONITOR)
|
||||
rtllib_DisableNetMonitorMode(ieee->dev, false);
|
||||
rtllib_disable_net_monitor_mode(ieee->dev, false);
|
||||
}
|
||||
|
||||
if (!ieee->proto_started) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user