staging: rtl8723au: Remove never set struct rtw_adapter->bNotifyChannelChange
authorJes Sorensen <Jes.Sorensen@redhat.com>
Tue, 1 Jul 2014 08:11:20 +0000 (10:11 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 8 Jul 2014 22:51:37 +0000 (15:51 -0700)
Signed-off-by: Jes Sorensen <Jes.Sorensen@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/rtl8723au/core/rtw_wlan_util.c
drivers/staging/rtl8723au/hal/rtl8723a_phycfg.c
drivers/staging/rtl8723au/include/drv_types.h
drivers/staging/rtl8723au/os_dep/os_intfs.c

index 66e72e2673102a2a0800b2d8021b676658357ef4..25dae51fa97964abaed12de0a3c21d3a740d85cb 100644 (file)
@@ -360,10 +360,6 @@ void set_channel_bwmode23a(struct rtw_adapter *padapter, unsigned char channel,
 {
        u8 center_ch;
 
-       if (padapter->bNotifyChannelChange)
-               DBG_8723A("[%s] ch = %d, offset = %d, bwmode = %d\n",
-                         __func__, channel, channel_offset, bwmode);
-
        if (bwmode == HT_CHANNEL_WIDTH_20 ||
            channel_offset == HAL_PRIME_CHNL_OFFSET_DONT_CARE) {
                /* SelectChannel23a(padapter, channel); */
index d23525e664fb10c59edda9be924ba8a1c45e16d6..8a6ba63151cdf989b7c5e3121e37108c389caa4c 100644 (file)
@@ -1098,9 +1098,6 @@ static void _PHY_SwChnl8723A(struct rtw_adapter *Adapter, u8 channel)
        u32 param1, param2;
        struct hal_data_8723a *pHalData = GET_HAL_DATA(Adapter);
 
-       if (Adapter->bNotifyChannelChange)
-               DBG_8723A("[%s] ch = %d\n", __func__, channel);
-
        /* s1. pre common command - CmdID_SetTxPowerLevel */
        PHY_SetTxPowerLevel8723A(Adapter, channel);
 
index 3ef9d7a045f2295f570d6fc1d1fbc4f971121156..c06de681c74fb2c83c4980bb9822287d6156f75e 100644 (file)
@@ -257,8 +257,6 @@ struct rtw_adapter {
        u8 bFWReady;
        u8 bReadPortCancel;
        u8 bWritePortCancel;
-       /* The driver will show the desired chan nor when this flag is 1. */
-       u8 bNotifyChannelChange;
 
        /* extend to support multi interface */
        /* IFACE_ID0 is equals to PRIMARY_ADAPTER */
index 7fa5c4c0c8badf89bc478a5fa43c894584d0e591..d72305dc800f8966b571a628f656130ec821a441 100644 (file)
@@ -425,7 +425,6 @@ static int rtw_init_default_value(struct rtw_adapter *padapter)
        /* misc. */
        padapter->bReadPortCancel = false;
        padapter->bWritePortCancel = false;
-       padapter->bNotifyChannelChange = 0;
        return ret;
 }
 
This page took 0.032142 seconds and 5 git commands to generate.