mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-06 14:05:39 +00:00
Staging: rtl8192e: Rename function rtllib_EnableNetMonitorMode()
Rename function rtllib_EnableNetMonitorModeto to rtllib_enable_net_monitor_mode to fix checkpatch warning Avoid CamelCase. Signed-off-by: Tree Davies <tdavies@darkphysics.net> Link: https://lore.kernel.org/r/20231225202314.31869-5-tdavies@darkphysics.net Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
5fa882a8ad
commit
2d1f383244
@ -1677,7 +1677,7 @@ void rtllib_sta_ps_send_pspoll_frame(struct rtllib_device *ieee);
|
||||
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_enable_net_monitor_mode(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);
|
||||
|
@ -348,7 +348,7 @@ static inline struct sk_buff *rtllib_probe_req(struct rtllib_device *ieee)
|
||||
}
|
||||
|
||||
/* Enables network monitor mode, all rx packets will be received. */
|
||||
void rtllib_EnableNetMonitorMode(struct net_device *dev,
|
||||
void rtllib_enable_net_monitor_mode(struct net_device *dev,
|
||||
bool init_state)
|
||||
{
|
||||
struct rtllib_device *ieee = netdev_priv_rsl(dev);
|
||||
|
@ -266,7 +266,7 @@ int rtllib_wx_set_mode(struct rtllib_device *ieee, struct iw_request_info *a,
|
||||
|
||||
if (wrqu->mode == IW_MODE_MONITOR) {
|
||||
ieee->dev->type = ARPHRD_IEEE80211;
|
||||
rtllib_EnableNetMonitorMode(ieee->dev, false);
|
||||
rtllib_enable_net_monitor_mode(ieee->dev, false);
|
||||
} else {
|
||||
ieee->dev->type = ARPHRD_ETHER;
|
||||
if (ieee->iw_mode == IW_MODE_MONITOR)
|
||||
|
Loading…
Reference in New Issue
Block a user