File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -1677,8 +1677,8 @@ void rtllib_sta_ps_send_pspoll_frame(struct rtllib_device *ieee);
1677
1677
void rtllib_start_protocol (struct rtllib_device * ieee );
1678
1678
void rtllib_stop_protocol (struct rtllib_device * ieee );
1679
1679
1680
- void rtllib_EnableNetMonitorMode (struct net_device * dev , bool bInitState );
1681
- void rtllib_DisableNetMonitorMode (struct net_device * dev , bool bInitState );
1680
+ void rtllib_EnableNetMonitorMode (struct net_device * dev , bool init_state );
1681
+ void rtllib_DisableNetMonitorMode (struct net_device * dev , bool init_state );
1682
1682
1683
1683
void rtllib_softmac_stop_protocol (struct rtllib_device * ieee );
1684
1684
void rtllib_softmac_start_protocol (struct rtllib_device * ieee );
Original file line number Diff line number Diff line change @@ -349,26 +349,26 @@ static inline struct sk_buff *rtllib_probe_req(struct rtllib_device *ieee)
349
349
350
350
/* Enables network monitor mode, all rx packets will be received. */
351
351
void rtllib_EnableNetMonitorMode (struct net_device * dev ,
352
- bool bInitState )
352
+ bool init_state )
353
353
{
354
354
struct rtllib_device * ieee = netdev_priv_rsl (dev );
355
355
356
356
netdev_info (dev , "========>Enter Monitor Mode\n" );
357
357
358
- ieee -> AllowAllDestAddrHandler (dev , true, !bInitState );
358
+ ieee -> AllowAllDestAddrHandler (dev , true, !init_state );
359
359
}
360
360
361
361
/* Disables network monitor mode. Only packets destinated to
362
362
* us will be received.
363
363
*/
364
364
void rtllib_DisableNetMonitorMode (struct net_device * dev ,
365
- bool bInitState )
365
+ bool init_state )
366
366
{
367
367
struct rtllib_device * ieee = netdev_priv_rsl (dev );
368
368
369
369
netdev_info (dev , "========>Exit Monitor Mode\n" );
370
370
371
- ieee -> AllowAllDestAddrHandler (dev , false, !bInitState );
371
+ ieee -> AllowAllDestAddrHandler (dev , false, !init_state );
372
372
}
373
373
374
374
static void rtllib_send_probe (struct rtllib_device * ieee )
You can’t perform that action at this time.
0 commit comments