File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -718,7 +718,7 @@ static void _rtl92e_init_priv_handler(struct net_device *dev)
718718 priv -> rtllib -> handle_beacon = _rtl92e_handle_beacon ;
719719 priv -> rtllib -> set_wireless_mode = rtl92e_set_wireless_mode ;
720720 priv -> rtllib -> LeisurePSLeave = rtl92e_leisure_ps_leave ;
721- priv -> rtllib -> SetBWModeHandler = rtl92e_set_bw_mode ;
721+ priv -> rtllib -> set_bw_mode_handler = rtl92e_set_bw_mode ;
722722 priv -> rf_set_chan = rtl92e_set_channel ;
723723
724724 priv -> rtllib -> start_send_beacons = rtl92e_start_beacon ;
Original file line number Diff line number Diff line change @@ -833,11 +833,11 @@ static void HTSetConnectBwModeCallback(struct rtllib_device *ieee)
833833 ieee -> set_chan (ieee -> dev ,
834834 ieee -> current_network .channel );
835835
836- ieee -> SetBWModeHandler (ieee -> dev , HT_CHANNEL_WIDTH_20_40 ,
836+ ieee -> set_bw_mode_handler (ieee -> dev , HT_CHANNEL_WIDTH_20_40 ,
837837 ht_info -> CurSTAExtChnlOffset );
838838 } else {
839839 ieee -> set_chan (ieee -> dev , ieee -> current_network .channel );
840- ieee -> SetBWModeHandler (ieee -> dev , HT_CHANNEL_WIDTH_20 ,
840+ ieee -> set_bw_mode_handler (ieee -> dev , HT_CHANNEL_WIDTH_20 ,
841841 HT_EXTCHNL_OFFSET_NO_EXT );
842842 }
843843
Original file line number Diff line number Diff line change @@ -1686,9 +1686,9 @@ struct rtllib_device {
16861686
16871687 /* check whether Tx hw resource available */
16881688 short (* check_nic_enough_desc )(struct net_device * dev , int queue_index );
1689- void (* SetBWModeHandler )(struct net_device * dev ,
1690- enum ht_channel_width bandwidth ,
1691- enum ht_extchnl_offset Offset );
1689+ void (* set_bw_mode_handler )(struct net_device * dev ,
1690+ enum ht_channel_width bandwidth ,
1691+ enum ht_extchnl_offset Offset );
16921692 bool (* GetNmodeSupportBySecCfg )(struct net_device * dev );
16931693 void (* set_wireless_mode )(struct net_device * dev , u8 wireless_mode );
16941694 bool (* GetHalfNmodeSupportByAPsHandler )(struct net_device * dev );
Original file line number Diff line number Diff line change @@ -335,7 +335,7 @@ void rtllib_wx_sync_scan_wq(void *data)
335335 b40M = 1 ;
336336 chan_offset = ieee -> ht_info -> CurSTAExtChnlOffset ;
337337 bandwidth = (enum ht_channel_width )ieee -> ht_info -> bCurBW40MHz ;
338- ieee -> SetBWModeHandler (ieee -> dev , HT_CHANNEL_WIDTH_20 ,
338+ ieee -> set_bw_mode_handler (ieee -> dev , HT_CHANNEL_WIDTH_20 ,
339339 HT_EXTCHNL_OFFSET_NO_EXT );
340340 }
341341
@@ -348,7 +348,7 @@ void rtllib_wx_sync_scan_wq(void *data)
348348 ieee -> set_chan (ieee -> dev , chan - 2 );
349349 else
350350 ieee -> set_chan (ieee -> dev , chan );
351- ieee -> SetBWModeHandler (ieee -> dev , bandwidth , chan_offset );
351+ ieee -> set_bw_mode_handler (ieee -> dev , bandwidth , chan_offset );
352352 } else {
353353 ieee -> set_chan (ieee -> dev , chan );
354354 }
You can’t perform that action at this time.
0 commit comments