Staging: rt3090: remove private ioctls
[pandora-kernel.git] / drivers / staging / rt3090 / sta_ioctl.c
index b8ab84a..e419fb1 100644 (file)
@@ -101,23 +101,6 @@ struct iw_priv_args privtab[] = {
          IW_PRIV_TYPE_CHAR | 1024, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_MASK, "adhocEntry" },
 /* --- sub-ioctls relations --- */
 
-#ifdef DBG
-{ RTPRIV_IOCTL_BBP,
-  IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_MASK, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_MASK,
-  "bbp"},
-{ RTPRIV_IOCTL_MAC,
-  IW_PRIV_TYPE_CHAR | 1024, IW_PRIV_TYPE_CHAR | 1024,
-  "mac"},
-#ifdef RTMP_RF_RW_SUPPORT
-{ RTPRIV_IOCTL_RF,
-  IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_MASK, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_MASK,
-  "rf"},
-#endif // RTMP_RF_RW_SUPPORT //
-{ RTPRIV_IOCTL_E2P,
-  IW_PRIV_TYPE_CHAR | 1024, IW_PRIV_TYPE_CHAR | 1024,
-  "e2p"},
-#endif  /* DBG */
-
 { RTPRIV_IOCTL_STATISTICS,
   0, IW_PRIV_TYPE_CHAR | IW_PRIV_SIZE_MASK,
   "stat"},
@@ -204,18 +187,6 @@ INT Set_Wpa_Support(
        IN      PSTRING                 arg);
 #endif // WPA_SUPPLICANT_SUPPORT //
 
-#ifdef DBG
-
-VOID RTMPIoctlMAC(
-       IN      PRTMP_ADAPTER   pAdapter,
-       IN      struct iwreq    *wrq);
-
-VOID RTMPIoctlE2PROM(
-    IN  PRTMP_ADAPTER   pAdapter,
-    IN  struct iwreq    *wrq);
-#endif // DBG //
-
-
 NDIS_STATUS RTMPWPANoneAddKeyProc(
     IN  PRTMP_ADAPTER   pAd,
     IN PVOID                   pBuf);
@@ -2917,142 +2888,6 @@ int rt_ioctl_siwpmksa(struct net_device *dev,
 }
 #endif // #if WIRELESS_EXT > 17
 
-#ifdef DBG
-static int
-rt_private_ioctl_bbp(struct net_device *dev, struct iw_request_info *info,
-               struct iw_point *wrq, char *extra)
-                       {
-       PSTRING                         this_char;
-       PSTRING                         value = NULL;
-       UCHAR                           regBBP = 0;
-//     CHAR                            arg[255]={0};
-       UINT32                          bbpId;
-       UINT32                          bbpValue;
-       BOOLEAN                         bIsPrintAllBBP = FALSE;
-       INT                                     Status = 0;
-    PRTMP_ADAPTER       pAdapter = RTMP_OS_NETDEV_GET_PRIV(dev);
-
-
-       memset(extra, 0x00, IW_PRIV_SIZE_MASK);
-
-       if (wrq->length > 1) //No parameters.
-                               {
-               sprintf(extra, "\n");
-
-               //Parsing Read or Write
-               this_char = wrq->pointer;
-               DBGPRINT(RT_DEBUG_TRACE, ("this_char=%s\n", this_char));
-               if (!*this_char)
-                       goto next;
-
-               if ((value = rtstrchr(this_char, '=')) != NULL)
-                       *value++ = 0;
-
-               if (!value || !*value)
-               { //Read
-                       DBGPRINT(RT_DEBUG_TRACE, ("this_char=%s, value=%s\n", this_char, value));
-                       if (sscanf(this_char, "%d", &(bbpId)) == 1)
-                       {
-                               if (bbpId <= MAX_BBP_ID)
-                               {
-#ifdef RALINK_ATE
-                                       if (ATE_ON(pAdapter))
-                                       {
-                                               ATE_BBP_IO_READ8_BY_REG_ID(pAdapter, bbpId, &regBBP);
-                                       }
-                                       else
-#endif // RALINK_ATE //
-                                       {
-                                       RTMP_BBP_IO_READ8_BY_REG_ID(pAdapter, bbpId, &regBBP);
-                                       }
-                                       sprintf(extra+strlen(extra), "R%02d[0x%02X]:%02X\n", bbpId, bbpId, regBBP);
-                    wrq->length = strlen(extra) + 1; // 1: size of '\0'
-                                       DBGPRINT(RT_DEBUG_TRACE, ("msg=%s\n", extra));
-                               }
-                               else
-                               {//Invalid parametes, so default printk all bbp
-                                       bIsPrintAllBBP = TRUE;
-                                       goto next;
-                               }
-                       }
-                       else
-                       { //Invalid parametes, so default printk all bbp
-                               bIsPrintAllBBP = TRUE;
-                               goto next;
-                       }
-               }
-               else
-               { //Write
-                       if ((sscanf(this_char, "%d", &(bbpId)) == 1) && (sscanf(value, "%x", &(bbpValue)) == 1))
-                       {
-                               if (bbpId <= MAX_BBP_ID)
-                               {
-#ifdef RALINK_ATE
-                                       if (ATE_ON(pAdapter))
-                                       {
-                                               ATE_BBP_IO_WRITE8_BY_REG_ID(pAdapter, bbpId, bbpValue);
-                                               /* read it back for showing */
-                                               ATE_BBP_IO_READ8_BY_REG_ID(pAdapter, bbpId, &regBBP);
-                                       }
-                                       else
-#endif // RALINK_ATE //
-                                       {
-                                           RTMP_BBP_IO_WRITE8_BY_REG_ID(pAdapter, bbpId, bbpValue);
-                                       /* read it back for showing */
-                                       RTMP_BBP_IO_READ8_BY_REG_ID(pAdapter, bbpId, &regBBP);
-                       }
-                                       sprintf(extra+strlen(extra), "R%02d[0x%02X]:%02X\n", bbpId, bbpId, regBBP);
-                    wrq->length = strlen(extra) + 1; // 1: size of '\0'
-                                       DBGPRINT(RT_DEBUG_TRACE, ("msg=%s\n", extra));
-                               }
-                               else
-                               {//Invalid parametes, so default printk all bbp
-                                       bIsPrintAllBBP = TRUE;
-                                       goto next;
-                               }
-                       }
-                       else
-                       { //Invalid parametes, so default printk all bbp
-                               bIsPrintAllBBP = TRUE;
-                               goto next;
-                       }
-               }
-               }
-       else
-               bIsPrintAllBBP = TRUE;
-
-next:
-       if (bIsPrintAllBBP)
-       {
-               memset(extra, 0x00, IW_PRIV_SIZE_MASK);
-               sprintf(extra, "\n");
-               for (bbpId = 0; bbpId <= MAX_BBP_ID; bbpId++)
-               {
-                   if (strlen(extra) >= (IW_PRIV_SIZE_MASK - 20))
-                break;
-#ifdef RALINK_ATE
-                       if (ATE_ON(pAdapter))
-                       {
-                               ATE_BBP_IO_READ8_BY_REG_ID(pAdapter, bbpId, &regBBP);
-                       }
-                       else
-#endif // RALINK_ATE //
-                       RTMP_BBP_IO_READ8_BY_REG_ID(pAdapter, bbpId, &regBBP);
-                       sprintf(extra+strlen(extra), "R%02d[0x%02X]:%02X    ", bbpId, bbpId, regBBP);
-                       if (bbpId%5 == 4)
-                       sprintf(extra+strlen(extra), "%03d = %02X\n", bbpId, regBBP);  // edit by johnli, change display format
-               }
-
-        wrq->length = strlen(extra) + 1; // 1: size of '\0'
-        DBGPRINT(RT_DEBUG_TRACE, ("wrq->length = %d\n", wrq->length));
-       }
-
-       DBGPRINT(RT_DEBUG_TRACE, ("<==rt_private_ioctl_bbp\n\n"));
-
-    return Status;
-}
-#endif // DBG //
-
 int rt_ioctl_siwrate(struct net_device *dev,
                        struct iw_request_info *info,
                        union iwreq_data *wrqu, char *extra)
@@ -3246,11 +3081,7 @@ static const iw_handler rt_priv_handlers[] = {
        (iw_handler) NULL, /* + 0x00 */
        (iw_handler) NULL, /* + 0x01 */
        (iw_handler) rt_ioctl_setparam, /* + 0x02 */
-#ifdef DBG
-       (iw_handler) rt_private_ioctl_bbp, /* + 0x03 */
-#else
        (iw_handler) NULL, /* + 0x03 */
-#endif
        (iw_handler) NULL, /* + 0x04 */
        (iw_handler) NULL, /* + 0x05 */
        (iw_handler) NULL, /* + 0x06 */
@@ -3288,2388 +3119,113 @@ const struct iw_handler_def rt28xx_iw_handler_def =
 #endif
 };
 
-INT RTMPSetInformation(
-    IN  PRTMP_ADAPTER pAd,
-    IN  OUT struct ifreq    *rq,
-    IN  INT                 cmd)
+INT rt28xx_sta_ioctl(
+       IN      struct net_device       *net_dev,
+       IN      OUT     struct ifreq    *rq,
+       IN      INT                                     cmd)
 {
-    struct iwreq                        *wrq = (struct iwreq *) rq;
-    NDIS_802_11_SSID                    Ssid;
-    NDIS_802_11_MAC_ADDRESS             Bssid;
-    RT_802_11_PHY_MODE                  PhyMode;
-    RT_802_11_STA_CONFIG                StaConfig;
-    NDIS_802_11_RATES                   aryRates;
-    RT_802_11_PREAMBLE                  Preamble;
-    NDIS_802_11_WEP_STATUS              WepStatus;
-    NDIS_802_11_AUTHENTICATION_MODE     AuthMode = Ndis802_11AuthModeMax;
-    NDIS_802_11_NETWORK_INFRASTRUCTURE  BssType;
-    NDIS_802_11_RTS_THRESHOLD           RtsThresh;
-    NDIS_802_11_FRAGMENTATION_THRESHOLD FragThresh;
-    NDIS_802_11_POWER_MODE              PowerMode;
-    PNDIS_802_11_KEY                    pKey = NULL;
-    PNDIS_802_11_WEP                           pWepKey =NULL;
-    PNDIS_802_11_REMOVE_KEY             pRemoveKey = NULL;
-    NDIS_802_11_CONFIGURATION           Config, *pConfig = NULL;
-    NDIS_802_11_NETWORK_TYPE            NetType;
-    ULONG                               Now;
-    UINT                                KeyIdx = 0;
-    INT                                 Status = NDIS_STATUS_SUCCESS, MaxPhyMode = PHY_11G;
-    ULONG                               PowerTemp;
-    BOOLEAN                             RadioState;
-    BOOLEAN                             StateMachineTouched = FALSE;
-     PNDIS_802_11_PASSPHRASE                    ppassphrase = NULL;
-#ifdef DOT11_N_SUPPORT
-       OID_SET_HT_PHYMODE                                      HT_PhyMode;     //11n ,kathy
-#endif // DOT11_N_SUPPORT //
-#ifdef WPA_SUPPLICANT_SUPPORT
-    PNDIS_802_11_PMKID                  pPmkId = NULL;
-    BOOLEAN                                            IEEE8021xState = FALSE;
-    BOOLEAN                                            IEEE8021x_required_keys = FALSE;
-    UCHAR                               wpa_supplicant_enable = 0;
-#endif // WPA_SUPPLICANT_SUPPORT //
-
-#ifdef SNMP_SUPPORT
-       TX_RTY_CFG_STRUC                        tx_rty_cfg;
-       ULONG                                           ShortRetryLimit, LongRetryLimit;
-       UCHAR                                           ctmp;
-#endif // SNMP_SUPPORT //
+       POS_COOKIE                      pObj;
+       RTMP_ADAPTER        *pAd = NULL;
+       struct iwreq        *wrq = (struct iwreq *) rq;
+       BOOLEAN                         StateMachineTouched = FALSE;
+       INT                                     Status = NDIS_STATUS_SUCCESS;
 
+       pAd = RTMP_OS_NETDEV_GET_PRIV(net_dev);
+       if (pAd == NULL)
+       {
+               /* if 1st open fail, pAd will be free;
+                  So the net_dev->priv will be NULL in 2rd open */
+               return -ENETDOWN;
+       }
+       pObj = (POS_COOKIE) pAd->OS_Cookie;
 
+    //check if the interface is down
+    if(!RTMP_TEST_FLAG(pAd, fRTMP_ADAPTER_INTERRUPT_IN_USE))
+    {
+#ifdef CONFIG_APSTA_MIXED_SUPPORT
+           if (wrq->u.data.pointer == NULL)
+           {
+                   return Status;
+           }
 
+           if (strstr(wrq->u.data.pointer, "OpMode") == NULL)
+#endif // CONFIG_APSTA_MIXED_SUPPORT //
+               {
+            DBGPRINT(RT_DEBUG_TRACE, ("INFO::Network is down!\n"));
+                   return -ENETDOWN;
+        }
+    }
 
-#ifdef DOT11_N_SUPPORT
-       MaxPhyMode = PHY_11N_5G;
-#endif // DOT11_N_SUPPORT //
+       {       // determine this ioctl command is comming from which interface.
+               pObj->ioctl_if_type = INT_MAIN;
+               pObj->ioctl_if = MAIN_MBSSID;
+       }
 
-       DBGPRINT(RT_DEBUG_TRACE, ("-->RTMPSetInformation(),     0x%08x\n", cmd&0x7FFF));
-       switch(cmd & 0x7FFF) {
-               case RT_OID_802_11_COUNTRY_REGION:
-                       if (wrq->u.data.length < sizeof(UCHAR))
-                               Status = -EINVAL;
-                       // Only avaliable when EEPROM not programming
-            else if (!(pAd->CommonCfg.CountryRegion & 0x80) && !(pAd->CommonCfg.CountryRegionForABand & 0x80))
+       switch(cmd)
+       {
+#ifdef RALINK_ATE
+#ifdef RALINK_28xx_QA
+               case RTPRIV_IOCTL_ATE:
                        {
-                               ULONG   Country;
-                               UCHAR   TmpPhy;
-
-                               Status = copy_from_user(&Country, wrq->u.data.pointer, wrq->u.data.length);
-                               pAd->CommonCfg.CountryRegion = (UCHAR)(Country & 0x000000FF);
-                               pAd->CommonCfg.CountryRegionForABand = (UCHAR)((Country >> 8) & 0x000000FF);
-                TmpPhy = pAd->CommonCfg.PhyMode;
-                               pAd->CommonCfg.PhyMode = 0xff;
-                               // Build all corresponding channel information
-                               RTMPSetPhyMode(pAd, TmpPhy);
-#ifdef DOT11_N_SUPPORT
-                               SetCommonHT(pAd);
-#endif // DOT11_N_SUPPORT //
-                               DBGPRINT(RT_DEBUG_TRACE, ("Set::RT_OID_802_11_COUNTRY_REGION (A:%d  B/G:%d)\n", pAd->CommonCfg.CountryRegionForABand,
-                                   pAd->CommonCfg.CountryRegion));
-            }
+                               RtmpDoAte(pAd, wrq);
+                       }
+                       break;
+#endif // RALINK_28xx_QA //
+#endif // RALINK_ATE //
+        case SIOCGIFHWADDR:
+                       DBGPRINT(RT_DEBUG_TRACE, ("IOCTL::SIOCGIFHWADDR\n"));
+                       memcpy(wrq->u.name, pAd->CurrentAddress, ETH_ALEN);
+                       break;
+               case SIOCGIWNAME:
+        {
+               char *name=&wrq->u.name[0];
+               rt_ioctl_giwname(net_dev, NULL, name, NULL);
             break;
-        case OID_802_11_BSSID_LIST_SCAN:
-            Now = jiffies;
-                       DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_BSSID_LIST_SCAN, TxCnt = %d \n", pAd->RalinkCounters.LastOneSecTotalTxCount));
-
-            if (MONITOR_ON(pAd))
-            {
-                DBGPRINT(RT_DEBUG_TRACE, ("!!! Driver is in Monitor Mode now !!!\n"));
-                break;
-            }
-
-                       //Benson add 20080527, when radio off, sta don't need to scan
-                       if (RTMP_TEST_FLAG(pAd, fRTMP_ADAPTER_RADIO_OFF))
-                               break;
-
-                       if (RTMP_TEST_FLAG(pAd, fRTMP_ADAPTER_BSS_SCAN_IN_PROGRESS))
-                       {
-                DBGPRINT(RT_DEBUG_TRACE, ("!!! Driver is scanning now !!!\n"));
-                               pAd->StaCfg.bScanReqIsFromWebUI = TRUE;
-                               Status = NDIS_STATUS_SUCCESS;
-                break;
-            }
-
-                       if (pAd->RalinkCounters.LastOneSecTotalTxCount > 100)
-            {
-                DBGPRINT(RT_DEBUG_TRACE, ("!!! Link UP, ignore this set::OID_802_11_BSSID_LIST_SCAN\n"));
-                               Status = NDIS_STATUS_SUCCESS;
-                               pAd->StaCfg.ScanCnt = 99;               // Prevent auto scan triggered by this OID
-                               break;
-            }
-
-            if ((OPSTATUS_TEST_FLAG(pAd, fOP_STATUS_MEDIA_STATE_CONNECTED)) &&
-                               ((pAd->StaCfg.AuthMode == Ndis802_11AuthModeWPA) ||
-                               (pAd->StaCfg.AuthMode == Ndis802_11AuthModeWPAPSK) ||
-                               (pAd->StaCfg.AuthMode == Ndis802_11AuthModeWPA2) ||
-                               (pAd->StaCfg.AuthMode == Ndis802_11AuthModeWPA2PSK)) &&
-                (pAd->StaCfg.PortSecured == WPA_802_1X_PORT_NOT_SECURED))
-            {
-                DBGPRINT(RT_DEBUG_TRACE, ("!!! Link UP, Port Not Secured! ignore this set::OID_802_11_BSSID_LIST_SCAN\n"));
-                               Status = NDIS_STATUS_SUCCESS;
-                               pAd->StaCfg.ScanCnt = 99;               // Prevent auto scan triggered by this OID
-                               break;
-            }
-
-
-            if (pAd->Mlme.CntlMachine.CurrState != CNTL_IDLE)
-            {
-                RTMP_MLME_RESET_STATE_MACHINE(pAd);
-                DBGPRINT(RT_DEBUG_TRACE, ("!!! MLME busy, reset MLME state machine !!!\n"));
-            }
-
-            // tell CNTL state machine to call NdisMSetInformationComplete() after completing
-            // this request, because this request is initiated by NDIS.
-            pAd->MlmeAux.CurrReqIsFromNdis = FALSE;
-            // Reset allowed scan retries
-            pAd->StaCfg.ScanCnt = 0;
-            pAd->StaCfg.LastScanTime = Now;
-
-                       pAd->StaCfg.bScanReqIsFromWebUI = TRUE;
-            RTMP_SET_FLAG(pAd, fRTMP_ADAPTER_BSS_SCAN_IN_PROGRESS);
-            MlmeEnqueue(pAd,
-                        MLME_CNTL_STATE_MACHINE,
-                        OID_802_11_BSSID_LIST_SCAN,
-                        0,
-                        NULL);
-
-            Status = NDIS_STATUS_SUCCESS;
-            StateMachineTouched = TRUE;
+               }
+               case SIOCGIWESSID:  //Get ESSID
+        {
+               struct iw_point *essid=&wrq->u.essid;
+               rt_ioctl_giwessid(net_dev, NULL, essid, essid->pointer);
             break;
-        case OID_802_11_SSID:
-            if (wrq->u.data.length != sizeof(NDIS_802_11_SSID))
-                Status = -EINVAL;
-            else
-            {
-               PSTRING pSsidString = NULL;
-                Status = copy_from_user(&Ssid, wrq->u.data.pointer, wrq->u.data.length);
-
-                               DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_SSID (Len=%d,Ssid=%s)\n", Ssid.SsidLength, Ssid.Ssid));
-                if (Ssid.SsidLength > MAX_LEN_OF_SSID)
-                    Status = -EINVAL;
-                else
-                {
-                       if (Ssid.SsidLength == 0)
-                               {
-                               Set_SSID_Proc(pAd, "");
-                               }
-                                       else
-                    {
-                               pSsidString = (PSTRING)kmalloc(MAX_LEN_OF_SSID+1, MEM_ALLOC_FLAG);
-                                               if (pSsidString)
-                                               {
-                                                       NdisZeroMemory(pSsidString, MAX_LEN_OF_SSID+1);
-                                                       NdisMoveMemory(pSsidString, Ssid.Ssid, Ssid.SsidLength);
-                                                       Set_SSID_Proc(pAd, pSsidString);
-                                                       kfree(pSsidString);
-                                               }
-                                               else
-                                                       Status = -ENOMEM;
-                    }
-                }
-            }
+               }
+               case SIOCSIWESSID:  //Set ESSID
+               {
+               struct iw_point *essid=&wrq->u.essid;
+               rt_ioctl_siwessid(net_dev, NULL, essid, essid->pointer);
             break;
-               case OID_802_11_SET_PASSPHRASE:
-           ppassphrase= kmalloc(wrq->u.data.length, MEM_ALLOC_FLAG);
-
-           if(ppassphrase== NULL)
-            {
-               Status = -ENOMEM;
-                               DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_SET_PASSPHRASE, Failed!!\n"));
-               break;
-            }
-                       else
+               }
+               case SIOCSIWNWID:   // set network id (the cell)
+               case SIOCGIWNWID:   // get network id
+                       Status = -EOPNOTSUPP;
+                       break;
+               case SIOCSIWFREQ:   //set channel/frequency (Hz)
                {
-               Status = copy_from_user(ppassphrase, wrq->u.data.pointer, wrq->u.data.length);
-
-                               if (Status)
+               struct iw_freq *freq=&wrq->u.freq;
+               rt_ioctl_siwfreq(net_dev, NULL, freq, NULL);
+                       break;
+               }
+               case SIOCGIWFREQ:   // get channel/frequency (Hz)
+               {
+               struct iw_freq *freq=&wrq->u.freq;
+               rt_ioctl_giwfreq(net_dev, NULL, freq, NULL);
+                       break;
+               }
+               case SIOCSIWNICKN: //set node name/nickname
                {
-                       Status  = -EINVAL;
-                       DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_SET_PASSPHRASE, Failed (length mismatch)!!\n"));
+               //struct iw_point *data=&wrq->u.data;
+               //rt_ioctl_siwnickn(net_dev, NULL, data, NULL);
+                       break;
                        }
-                       else
-                       {
-                                       if(ppassphrase->KeyLength < 8 || ppassphrase->KeyLength > 64)
-                                       {
-                                               Status  = -EINVAL;
-                       DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_SET_PASSPHRASE, Failed (len less than 8 or greater than 64)!!\n"));
-                                       }
-                                       else
-                                       {
-                                               // set key passphrase and length
-                                               NdisZeroMemory(pAd->StaCfg.WpaPassPhrase, 64);
-                                       NdisMoveMemory(pAd->StaCfg.WpaPassPhrase, &ppassphrase->KeyMaterial, ppassphrase->KeyLength);
-                                               pAd->StaCfg.WpaPassPhraseLen = ppassphrase->KeyLength;
-                                               hex_dump("pAd->StaCfg.WpaPassPhrase", pAd->StaCfg.WpaPassPhrase, 64);
-                                               printk("WpaPassPhrase=%s\n",pAd->StaCfg.WpaPassPhrase);
-                                       }
-                }
-            }
-               kfree(ppassphrase);
+               case SIOCGIWNICKN: //get node name/nickname
+        {
+                       struct iw_point *erq = NULL;
+               erq = &wrq->u.data;
+            erq->length = strlen((PSTRING) pAd->nickname);
+            Status = copy_to_user(erq->pointer, pAd->nickname, erq->length);
                        break;
-
-        case OID_802_11_BSSID:
-            if (wrq->u.data.length != sizeof(NDIS_802_11_MAC_ADDRESS))
-                Status  = -EINVAL;
-            else
-            {
-                Status = copy_from_user(&Bssid, wrq->u.data.pointer, wrq->u.data.length);
-
-                // tell CNTL state machine to call NdisMSetInformationComplete() after completing
-                // this request, because this request is initiated by NDIS.
-                pAd->MlmeAux.CurrReqIsFromNdis = FALSE;
-
-                               // Prevent to connect AP again in STAMlmePeriodicExec
-                               pAd->MlmeAux.AutoReconnectSsidLen= 32;
-
-                // Reset allowed scan retries
-                               pAd->StaCfg.ScanCnt = 0;
-
-                if (pAd->Mlme.CntlMachine.CurrState != CNTL_IDLE)
-                {
-                    RTMP_MLME_RESET_STATE_MACHINE(pAd);
-                    DBGPRINT(RT_DEBUG_TRACE, ("!!! MLME busy, reset MLME state machine !!!\n"));
-                }
-                MlmeEnqueue(pAd,
-                            MLME_CNTL_STATE_MACHINE,
-                            OID_802_11_BSSID,
-                            sizeof(NDIS_802_11_MAC_ADDRESS),
-                            (VOID *)&Bssid);
-                Status = NDIS_STATUS_SUCCESS;
-                StateMachineTouched = TRUE;
-
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_BSSID %02x:%02x:%02x:%02x:%02x:%02x\n",
-                                        Bssid[0], Bssid[1], Bssid[2], Bssid[3], Bssid[4], Bssid[5]));
-            }
-            break;
-        case RT_OID_802_11_RADIO:
-            if (wrq->u.data.length != sizeof(BOOLEAN))
-                Status  = -EINVAL;
-            else
-            {
-                Status = copy_from_user(&RadioState, wrq->u.data.pointer, wrq->u.data.length);
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::RT_OID_802_11_RADIO (=%d)\n", RadioState));
-                if (pAd->StaCfg.bSwRadio != RadioState)
-                {
-                    pAd->StaCfg.bSwRadio = RadioState;
-                    if (pAd->StaCfg.bRadio != (pAd->StaCfg.bHwRadio && pAd->StaCfg.bSwRadio))
-                    {
-                        pAd->StaCfg.bRadio = (pAd->StaCfg.bHwRadio && pAd->StaCfg.bSwRadio);
-                        if (pAd->StaCfg.bRadio == TRUE)
-                        {
-                            MlmeRadioOn(pAd);
-                            // Update extra information
-                                                       pAd->ExtraInfo = EXTRA_INFO_CLEAR;
-                        }
-                        else
-                        {
-                               if (RTMP_TEST_FLAG(pAd, fRTMP_ADAPTER_BSS_SCAN_IN_PROGRESS))
-                                           {
-                                               if (pAd->Mlme.CntlMachine.CurrState != CNTL_IDLE)
-                                                       {
-                                                           RTMP_MLME_RESET_STATE_MACHINE(pAd);
-                                                           DBGPRINT(RT_DEBUG_TRACE, ("!!! MLME busy, reset MLME state machine !!!\n"));
-                                                       }
-                                           }
-
-                            MlmeRadioOff(pAd);
-                            // Update extra information
-                                                       pAd->ExtraInfo = SW_RADIO_OFF;
-                        }
-                    }
-                }
-            }
-            break;
-        case RT_OID_802_11_PHY_MODE:
-            if (wrq->u.data.length != sizeof(RT_802_11_PHY_MODE))
-                Status  = -EINVAL;
-            else
-            {
-                Status = copy_from_user(&PhyMode, wrq->u.data.pointer, wrq->u.data.length);
-                               if (PhyMode <= MaxPhyMode)
-                               {
-                RTMPSetPhyMode(pAd, PhyMode);
-#ifdef DOT11_N_SUPPORT
-                               SetCommonHT(pAd);
-#endif // DOT11_N_SUPPORT //
-                               }
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::RT_OID_802_11_PHY_MODE (=%d)\n", PhyMode));
-            }
-            break;
-        case RT_OID_802_11_STA_CONFIG:
-            if (wrq->u.data.length != sizeof(RT_802_11_STA_CONFIG))
-                Status  = -EINVAL;
-            else
-            {
-               UINT32  Value;
-
-                Status = copy_from_user(&StaConfig, wrq->u.data.pointer, wrq->u.data.length);
-                pAd->CommonCfg.bEnableTxBurst = StaConfig.EnableTxBurst;
-                pAd->CommonCfg.UseBGProtection = StaConfig.UseBGProtection;
-                pAd->CommonCfg.bUseShortSlotTime = 1; // 2003-10-30 always SHORT SLOT capable
-                if ((pAd->CommonCfg.PhyMode != StaConfig.AdhocMode) &&
-                                       (StaConfig.AdhocMode <= MaxPhyMode))
-                {
-                    // allow dynamic change of "USE OFDM rate or not" in ADHOC mode
-                    // if setting changed, need to reset current TX rate as well as BEACON frame format
-                    if (pAd->StaCfg.BssType == BSS_ADHOC)
-                    {
-                       pAd->CommonCfg.PhyMode = StaConfig.AdhocMode;
-                       RTMPSetPhyMode(pAd, PhyMode);
-                        MlmeUpdateTxRates(pAd, FALSE, 0);
-                        MakeIbssBeacon(pAd);           // re-build BEACON frame
-                        AsicEnableIbssSync(pAd);   // copy to on-chip memory
-                    }
-                }
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::RT_OID_802_11_SET_STA_CONFIG (Burst=%d, Protection=%ld,ShortSlot=%d\n",
-                                        pAd->CommonCfg.bEnableTxBurst,
-                                        pAd->CommonCfg.UseBGProtection,
-                                        pAd->CommonCfg.bUseShortSlotTime));
-
-                               if (pAd->CommonCfg.PSPXlink)
-                                       Value = PSPXLINK;
-                               else
-                                       Value = STANORMAL;
-                               RTMP_IO_WRITE32(pAd, RX_FILTR_CFG, Value);
-                               Value = 0;
-                               RTMP_IO_READ32(pAd, MAC_SYS_CTRL, &Value);
-                               Value &= (~0x80);
-                               RTMP_IO_WRITE32(pAd, MAC_SYS_CTRL, Value);
-            }
-            break;
-        case OID_802_11_DESIRED_RATES:
-            if (wrq->u.data.length != sizeof(NDIS_802_11_RATES))
-                Status  = -EINVAL;
-            else
-            {
-                Status = copy_from_user(&aryRates, wrq->u.data.pointer, wrq->u.data.length);
-                NdisZeroMemory(pAd->CommonCfg.DesireRate, MAX_LEN_OF_SUPPORTED_RATES);
-                NdisMoveMemory(pAd->CommonCfg.DesireRate, &aryRates, sizeof(NDIS_802_11_RATES));
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_DESIRED_RATES (%02x,%02x,%02x,%02x,%02x,%02x,%02x,%02x)\n",
-                    pAd->CommonCfg.DesireRate[0],pAd->CommonCfg.DesireRate[1],
-                    pAd->CommonCfg.DesireRate[2],pAd->CommonCfg.DesireRate[3],
-                    pAd->CommonCfg.DesireRate[4],pAd->CommonCfg.DesireRate[5],
-                    pAd->CommonCfg.DesireRate[6],pAd->CommonCfg.DesireRate[7] ));
-                // Changing DesiredRate may affect the MAX TX rate we used to TX frames out
-                MlmeUpdateTxRates(pAd, FALSE, 0);
-            }
-            break;
-        case RT_OID_802_11_PREAMBLE:
-            if (wrq->u.data.length != sizeof(RT_802_11_PREAMBLE))
-                Status  = -EINVAL;
-            else
-            {
-                Status = copy_from_user(&Preamble, wrq->u.data.pointer, wrq->u.data.length);
-                if (Preamble == Rt802_11PreambleShort)
-                {
-                    pAd->CommonCfg.TxPreamble = Preamble;
-                    MlmeSetTxPreamble(pAd, Rt802_11PreambleShort);
-                }
-                else if ((Preamble == Rt802_11PreambleLong) || (Preamble == Rt802_11PreambleAuto))
-                {
-                    // if user wants AUTO, initialize to LONG here, then change according to AP's
-                    // capability upon association.
-                    pAd->CommonCfg.TxPreamble = Preamble;
-                    MlmeSetTxPreamble(pAd, Rt802_11PreambleLong);
-                }
-                else
-                {
-                    Status = -EINVAL;
-                    break;
-                }
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::RT_OID_802_11_PREAMBLE (=%d)\n", Preamble));
-            }
-            break;
-        case OID_802_11_WEP_STATUS:
-            if (wrq->u.data.length != sizeof(NDIS_802_11_WEP_STATUS))
-                Status  = -EINVAL;
-            else
-            {
-                Status = copy_from_user(&WepStatus, wrq->u.data.pointer, wrq->u.data.length);
-                // Since TKIP, AES, WEP are all supported. It should not have any invalid setting
-                if (WepStatus <= Ndis802_11Encryption3KeyAbsent)
-                {
-                    if (pAd->StaCfg.WepStatus != WepStatus)
-                    {
-                        // Config has changed
-                        pAd->bConfigChanged = TRUE;
-                    }
-                    pAd->StaCfg.WepStatus     = WepStatus;
-                    pAd->StaCfg.OrigWepStatus = WepStatus;
-                    pAd->StaCfg.PairCipher    = WepStatus;
-                       pAd->StaCfg.GroupCipher   = WepStatus;
-                }
-                else
-                {
-                    Status  = -EINVAL;
-                    break;
-                }
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_WEP_STATUS (=%d)\n",WepStatus));
-            }
-            break;
-        case OID_802_11_AUTHENTICATION_MODE:
-            if (wrq->u.data.length != sizeof(NDIS_802_11_AUTHENTICATION_MODE))
-                Status  = -EINVAL;
-            else
-            {
-                Status = copy_from_user(&AuthMode, wrq->u.data.pointer, wrq->u.data.length);
-                if (AuthMode > Ndis802_11AuthModeMax)
-                {
-                    Status  = -EINVAL;
-                    break;
-                }
-                else
-                {
-                    if (pAd->StaCfg.AuthMode != AuthMode)
-                    {
-                        // Config has changed
-                        pAd->bConfigChanged = TRUE;
-                    }
-                    pAd->StaCfg.AuthMode = AuthMode;
-                }
-                pAd->StaCfg.PortSecured = WPA_802_1X_PORT_NOT_SECURED;
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_AUTHENTICATION_MODE (=%d) \n",pAd->StaCfg.AuthMode));
-            }
-            break;
-        case OID_802_11_INFRASTRUCTURE_MODE:
-            if (wrq->u.data.length != sizeof(NDIS_802_11_NETWORK_INFRASTRUCTURE))
-                Status  = -EINVAL;
-            else
-            {
-                Status = copy_from_user(&BssType, wrq->u.data.pointer, wrq->u.data.length);
-
-                               if (BssType == Ndis802_11IBSS)
-                                       Set_NetworkType_Proc(pAd, "Adhoc");
-                               else if (BssType == Ndis802_11Infrastructure)
-                                       Set_NetworkType_Proc(pAd, "Infra");
-                else if (BssType == Ndis802_11Monitor)
-                                       Set_NetworkType_Proc(pAd, "Monitor");
-                else
-                {
-                    Status  = -EINVAL;
-                    DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_INFRASTRUCTURE_MODE (unknown)\n"));
-                }
-            }
-            break;
-        case OID_802_11_REMOVE_WEP:
-            DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_REMOVE_WEP\n"));
-            if (wrq->u.data.length != sizeof(NDIS_802_11_KEY_INDEX))
-            {
-                               Status = -EINVAL;
-            }
-            else
-            {
-               KeyIdx = *(NDIS_802_11_KEY_INDEX *) wrq->u.data.pointer;
-
-               if (KeyIdx & 0x80000000)
-               {
-                       // Should never set default bit when remove key
-                       Status = -EINVAL;
-               }
-               else
-               {
-                       KeyIdx = KeyIdx & 0x0fffffff;
-                       if (KeyIdx >= 4){
-                               Status = -EINVAL;
-                       }
-                       else
-                       {
-                                               pAd->SharedKey[BSS0][KeyIdx].KeyLen = 0;
-                                               pAd->SharedKey[BSS0][KeyIdx].CipherAlg = CIPHER_NONE;
-                                               AsicRemoveSharedKeyEntry(pAd, 0, (UCHAR)KeyIdx);
-                       }
-               }
-            }
-            break;
-        case RT_OID_802_11_RESET_COUNTERS:
-            NdisZeroMemory(&pAd->WlanCounters, sizeof(COUNTER_802_11));
-            NdisZeroMemory(&pAd->Counters8023, sizeof(COUNTER_802_3));
-            NdisZeroMemory(&pAd->RalinkCounters, sizeof(COUNTER_RALINK));
-            pAd->Counters8023.RxNoBuffer   = 0;
-                       pAd->Counters8023.GoodReceives = 0;
-                       pAd->Counters8023.RxNoBuffer   = 0;
-            DBGPRINT(RT_DEBUG_TRACE, ("Set::RT_OID_802_11_RESET_COUNTERS \n"));
-            break;
-        case OID_802_11_RTS_THRESHOLD:
-            if (wrq->u.data.length != sizeof(NDIS_802_11_RTS_THRESHOLD))
-                Status  = -EINVAL;
-            else
-            {
-                Status = copy_from_user(&RtsThresh, wrq->u.data.pointer, wrq->u.data.length);
-                if (RtsThresh > MAX_RTS_THRESHOLD)
-                    Status  = -EINVAL;
-                else
-                    pAd->CommonCfg.RtsThreshold = (USHORT)RtsThresh;
-            }
-            DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_RTS_THRESHOLD (=%ld)\n",RtsThresh));
-            break;
-        case OID_802_11_FRAGMENTATION_THRESHOLD:
-            if (wrq->u.data.length != sizeof(NDIS_802_11_FRAGMENTATION_THRESHOLD))
-                Status  = -EINVAL;
-            else
-            {
-                Status = copy_from_user(&FragThresh, wrq->u.data.pointer, wrq->u.data.length);
-                pAd->CommonCfg.bUseZeroToDisableFragment = FALSE;
-                if (FragThresh > MAX_FRAG_THRESHOLD || FragThresh < MIN_FRAG_THRESHOLD)
-                {
-                    if (FragThresh == 0)
-                    {
-                        pAd->CommonCfg.FragmentThreshold = MAX_FRAG_THRESHOLD;
-                        pAd->CommonCfg.bUseZeroToDisableFragment = TRUE;
-                    }
-                    else
-                        Status  = -EINVAL;
-                }
-                else
-                    pAd->CommonCfg.FragmentThreshold = (USHORT)FragThresh;
-            }
-            DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_FRAGMENTATION_THRESHOLD (=%ld) \n",FragThresh));
-            break;
-        case OID_802_11_POWER_MODE:
-            if (wrq->u.data.length != sizeof(NDIS_802_11_POWER_MODE))
-                Status = -EINVAL;
-            else
-            {
-                Status = copy_from_user(&PowerMode, wrq->u.data.pointer, wrq->u.data.length);
-                if (PowerMode == Ndis802_11PowerModeCAM)
-                       Set_PSMode_Proc(pAd, "CAM");
-                else if (PowerMode == Ndis802_11PowerModeMAX_PSP)
-                       Set_PSMode_Proc(pAd, "Max_PSP");
-                else if (PowerMode == Ndis802_11PowerModeFast_PSP)
-                                       Set_PSMode_Proc(pAd, "Fast_PSP");
-                else if (PowerMode == Ndis802_11PowerModeLegacy_PSP)
-                                       Set_PSMode_Proc(pAd, "Legacy_PSP");
-                else
-                    Status = -EINVAL;
-            }
-            DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_POWER_MODE (=%d)\n",PowerMode));
-            break;
-         case RT_OID_802_11_TX_POWER_LEVEL_1:
-                       if (wrq->u.data.length  < sizeof(ULONG))
-                               Status = -EINVAL;
-                       else
-                       {
-                               Status = copy_from_user(&PowerTemp, wrq->u.data.pointer, wrq->u.data.length);
-                               if (PowerTemp > 100)
-                                       PowerTemp = 0xffffffff;  // AUTO
-                               pAd->CommonCfg.TxPowerDefault = PowerTemp; //keep current setting.
-                               pAd->CommonCfg.TxPowerPercentage = pAd->CommonCfg.TxPowerDefault;
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::RT_OID_802_11_TX_POWER_LEVEL_1 (=%ld)\n", pAd->CommonCfg.TxPowerPercentage));
-                       }
-               break;
-               case OID_802_11_NETWORK_TYPE_IN_USE:
-                       if (wrq->u.data.length != sizeof(NDIS_802_11_NETWORK_TYPE))
-                               Status = -EINVAL;
-                       else
-                       {
-                               Status = copy_from_user(&NetType, wrq->u.data.pointer, wrq->u.data.length);
-
-                               if (NetType == Ndis802_11DS)
-                                       RTMPSetPhyMode(pAd, PHY_11B);
-                               else if (NetType == Ndis802_11OFDM24)
-                                       RTMPSetPhyMode(pAd, PHY_11BG_MIXED);
-                               else if (NetType == Ndis802_11OFDM5)
-                                       RTMPSetPhyMode(pAd, PHY_11A);
-                               else
-                                       Status = -EINVAL;
-#ifdef DOT11_N_SUPPORT
-                               if (Status == NDIS_STATUS_SUCCESS)
-                                       SetCommonHT(pAd);
-#endif // DOT11_N_SUPPORT //
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_NETWORK_TYPE_IN_USE (=%d)\n",NetType));
-                   }
-                       break;
-        // For WPA PSK PMK key
-        case RT_OID_802_11_ADD_WPA:
-            pKey = kmalloc(wrq->u.data.length, MEM_ALLOC_FLAG);
-            if(pKey == NULL)
-            {
-                Status = -ENOMEM;
-                break;
-            }
-
-            Status = copy_from_user(pKey, wrq->u.data.pointer, wrq->u.data.length);
-            if (pKey->Length != wrq->u.data.length)
-            {
-                Status  = -EINVAL;
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::RT_OID_802_11_ADD_WPA, Failed!!\n"));
-            }
-            else
-            {
-                if ((pAd->StaCfg.AuthMode != Ndis802_11AuthModeWPAPSK) &&
-                                   (pAd->StaCfg.AuthMode != Ndis802_11AuthModeWPA2PSK) &&
-                                   (pAd->StaCfg.AuthMode != Ndis802_11AuthModeWPANone) )
-                {
-                    Status = -EOPNOTSUPP;
-                    DBGPRINT(RT_DEBUG_TRACE, ("Set::RT_OID_802_11_ADD_WPA, Failed!! [AuthMode != WPAPSK/WPA2PSK/WPANONE]\n"));
-                }
-                else if ((pAd->StaCfg.AuthMode == Ndis802_11AuthModeWPAPSK) ||
-                                                (pAd->StaCfg.AuthMode == Ndis802_11AuthModeWPA2PSK) ||
-                                                (pAd->StaCfg.AuthMode == Ndis802_11AuthModeWPANone) )     // Only for WPA PSK mode
-                               {
-                    NdisMoveMemory(pAd->StaCfg.PMK, &pKey->KeyMaterial, pKey->KeyLength);
-                    // Use RaConfig as PSK agent.
-                    // Start STA supplicant state machine
-                    if (pAd->StaCfg.AuthMode != Ndis802_11AuthModeWPANone)
-                        pAd->StaCfg.WpaState = SS_START;
-
-                    DBGPRINT(RT_DEBUG_TRACE, ("Set::RT_OID_802_11_ADD_WPA (id=0x%x, Len=%d-byte)\n", pKey->KeyIndex, pKey->KeyLength));
-                }
-                else
-                {
-                    pAd->StaCfg.WpaState = SS_NOTUSE;
-                    DBGPRINT(RT_DEBUG_TRACE, ("Set::RT_OID_802_11_ADD_WPA (id=0x%x, Len=%d-byte)\n", pKey->KeyIndex, pKey->KeyLength));
-                }
-            }
-            kfree(pKey);
-            break;
-        case OID_802_11_REMOVE_KEY:
-            pRemoveKey = kmalloc(wrq->u.data.length, MEM_ALLOC_FLAG);
-            if(pRemoveKey == NULL)
-            {
-                Status = -ENOMEM;
-                break;
-            }
-
-            Status = copy_from_user(pRemoveKey, wrq->u.data.pointer, wrq->u.data.length);
-            if (pRemoveKey->Length != wrq->u.data.length)
-            {
-                Status  = -EINVAL;
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_REMOVE_KEY, Failed!!\n"));
-            }
-            else
-            {
-                if (pAd->StaCfg.AuthMode >= Ndis802_11AuthModeWPA)
-                {
-                    RTMPWPARemoveKeyProc(pAd, pRemoveKey);
-                    DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_REMOVE_KEY, Remove WPA Key!!\n"));
-                }
-                else
-                {
-                    KeyIdx = pRemoveKey->KeyIndex;
-
-                    if (KeyIdx & 0x80000000)
-                    {
-                        // Should never set default bit when remove key
-                        Status  = -EINVAL;
-                        DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_REMOVE_KEY, Failed!!(Should never set default bit when remove key)\n"));
-                    }
-                    else
-                    {
-                        KeyIdx = KeyIdx & 0x0fffffff;
-                        if (KeyIdx > 3)
-                        {
-                            Status  = -EINVAL;
-                            DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_REMOVE_KEY, Failed!!(KeyId[%d] out of range)\n", KeyIdx));
-                        }
-                        else
-                        {
-                            pAd->SharedKey[BSS0][KeyIdx].KeyLen = 0;
-                            pAd->SharedKey[BSS0][KeyIdx].CipherAlg = CIPHER_NONE;
-                            AsicRemoveSharedKeyEntry(pAd, 0, (UCHAR)KeyIdx);
-                            DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_REMOVE_KEY (id=0x%x, Len=%d-byte)\n", pRemoveKey->KeyIndex, pRemoveKey->Length));
-                        }
-                    }
-                }
-            }
-            kfree(pRemoveKey);
-            break;
-        // New for WPA
-        case OID_802_11_ADD_KEY:
-            pKey = kmalloc(wrq->u.data.length, MEM_ALLOC_FLAG);
-            if(pKey == NULL)
-            {
-                Status = -ENOMEM;
-                break;
-            }
-            Status = copy_from_user(pKey, wrq->u.data.pointer, wrq->u.data.length);
-            if (pKey->Length != wrq->u.data.length)
-            {
-                Status  = -EINVAL;
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_ADD_KEY, Failed!!\n"));
-            }
-            else
-            {
-                RTMPAddKey(pAd, pKey);
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_ADD_KEY (id=0x%x, Len=%d-byte)\n", pKey->KeyIndex, pKey->KeyLength));
-            }
-            kfree(pKey);
-            break;
-        case OID_802_11_CONFIGURATION:
-            if (wrq->u.data.length != sizeof(NDIS_802_11_CONFIGURATION))
-                Status  = -EINVAL;
-            else
-            {
-                Status = copy_from_user(&Config, wrq->u.data.pointer, wrq->u.data.length);
-                pConfig = &Config;
-
-                if ((pConfig->BeaconPeriod >= 20) && (pConfig->BeaconPeriod <=400))
-                     pAd->CommonCfg.BeaconPeriod = (USHORT) pConfig->BeaconPeriod;
-
-                pAd->StaActive.AtimWin = (USHORT) pConfig->ATIMWindow;
-                MAP_KHZ_TO_CHANNEL_ID(pConfig->DSConfig, pAd->CommonCfg.Channel);
-                //
-                               // Save the channel on MlmeAux for CntlOidRTBssidProc used.
-                               //
-                               pAd->MlmeAux.Channel = pAd->CommonCfg.Channel;
-
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_CONFIGURATION (BeacnPeriod=%ld,AtimW=%ld,Ch=%d)\n",
-                    pConfig->BeaconPeriod, pConfig->ATIMWindow, pAd->CommonCfg.Channel));
-                // Config has changed
-                pAd->bConfigChanged = TRUE;
-            }
-            break;
-#ifdef DOT11_N_SUPPORT
-               case RT_OID_802_11_SET_HT_PHYMODE:
-                       if (wrq->u.data.length  != sizeof(OID_SET_HT_PHYMODE))
-                               Status = -EINVAL;
-                       else
-                       {
-                           POID_SET_HT_PHYMODE pHTPhyMode = &HT_PhyMode;
-
-                               Status = copy_from_user(&HT_PhyMode, wrq->u.data.pointer, wrq->u.data.length);
-                               DBGPRINT(RT_DEBUG_TRACE, ("Set::pHTPhyMode      (PhyMode = %d,TransmitNo = %d, HtMode = %d,     ExtOffset =     %d , MCS = %d, BW =     %d,     STBC = %d, SHORTGI = %d) \n",
-                               pHTPhyMode->PhyMode, pHTPhyMode->TransmitNo,pHTPhyMode->HtMode,pHTPhyMode->ExtOffset,
-                               pHTPhyMode->MCS, pHTPhyMode->BW, pHTPhyMode->STBC,      pHTPhyMode->SHORTGI));
-                               if (pAd->CommonCfg.PhyMode      >= PHY_11ABGN_MIXED)
-                                       RTMPSetHT(pAd,  pHTPhyMode);
-                       }
-                       DBGPRINT(RT_DEBUG_TRACE, ("Set::RT_OID_802_11_SET_HT_PHYMODE(MCS=%d,BW=%d,SGI=%d,STBC=%d)\n",
-                               pAd->StaCfg.HTPhyMode.field.MCS, pAd->StaCfg.HTPhyMode.field.BW, pAd->StaCfg.HTPhyMode.field.ShortGI,
-                               pAd->StaCfg.HTPhyMode.field.STBC));
-                       break;
-#endif // DOT11_N_SUPPORT //
-               case RT_OID_802_11_SET_APSD_SETTING:
-                       if (wrq->u.data.length != sizeof(ULONG))
-                               Status = -EINVAL;
-                       else
-                       {
-                               ULONG apsd ;
-                               Status = copy_from_user(&apsd, wrq->u.data.pointer,     wrq->u.data.length);
-
-                               /*-------------------------------------------------------------------
-                               |B31~B7 |       B6~B5    |       B4      |       B3      |      B2       |      B1       |         B0           |
-                               ---------------------------------------------------------------------
-                               | Rsvd  | Max SP Len | AC_VO | AC_VI | AC_BK | AC_BE | APSD     Capable |
-                               ---------------------------------------------------------------------*/
-                               pAd->CommonCfg.bAPSDCapable = (apsd & 0x00000001) ? TRUE :      FALSE;
-                               pAd->CommonCfg.bAPSDAC_BE = ((apsd      & 0x00000002) >> 1)     ? TRUE : FALSE;
-                               pAd->CommonCfg.bAPSDAC_BK = ((apsd      & 0x00000004) >> 2)     ? TRUE : FALSE;
-                               pAd->CommonCfg.bAPSDAC_VI = ((apsd      & 0x00000008) >> 3)     ? TRUE : FALSE;
-                               pAd->CommonCfg.bAPSDAC_VO = ((apsd      & 0x00000010) >> 4)     ? TRUE : FALSE;
-                               pAd->CommonCfg.MaxSPLength      = (UCHAR)((apsd & 0x00000060) >> 5);
-
-                               DBGPRINT(RT_DEBUG_TRACE, ("Set::RT_OID_802_11_SET_APSD_SETTING (apsd=0x%lx, APSDCap=%d, [BE,BK,VI,VO]=[%d/%d/%d/%d],    MaxSPLen=%d)\n", apsd, pAd->CommonCfg.bAPSDCapable,
-                                       pAd->CommonCfg.bAPSDAC_BE,      pAd->CommonCfg.bAPSDAC_BK,      pAd->CommonCfg.bAPSDAC_VI,      pAd->CommonCfg.bAPSDAC_VO,      pAd->CommonCfg.MaxSPLength));
-                       }
-                       break;
-
-               case RT_OID_802_11_SET_APSD_PSM:
-                       if (wrq->u.data.length  != sizeof(ULONG))
-                               Status = -EINVAL;
-                       else
-                       {
-                               // Driver needs to notify AP when PSM changes
-                               Status = copy_from_user(&pAd->CommonCfg.bAPSDForcePowerSave, wrq->u.data.pointer, wrq->u.data.length);
-                               if (pAd->CommonCfg.bAPSDForcePowerSave  != pAd->StaCfg.Psm)
-                               {
-                                       RTMP_SET_PSM_BIT(pAd,   pAd->CommonCfg.bAPSDForcePowerSave);
-                                       RTMPSendNullFrame(pAd,  pAd->CommonCfg.TxRate,  TRUE);
-                               }
-                               DBGPRINT(RT_DEBUG_TRACE, ("Set::RT_OID_802_11_SET_APSD_PSM (bAPSDForcePowerSave:%d)\n", pAd->CommonCfg.bAPSDForcePowerSave));
-                       }
-                       break;
-#ifdef QOS_DLS_SUPPORT
-               case RT_OID_802_11_SET_DLS:
-                       if (wrq->u.data.length != sizeof(ULONG))
-                               Status = -EINVAL;
-                       else
-                       {
-                               BOOLEAN oldvalue = pAd->CommonCfg.bDLSCapable;
-                               Status = copy_from_user(&pAd->CommonCfg.bDLSCapable, wrq->u.data.pointer, wrq->u.data.length);
-                               if (oldvalue && !pAd->CommonCfg.bDLSCapable)
-                               {
-                                       int     i;
-                                       // tear down local dls table entry
-                                       for     (i=0; i<MAX_NUM_OF_INIT_DLS_ENTRY; i++)
-                                       {
-                                               if (pAd->StaCfg.DLSEntry[i].Valid && (pAd->StaCfg.DLSEntry[i].Status == DLS_FINISH))
-                                               {
-                                                       pAd->StaCfg.DLSEntry[i].Status  = DLS_NONE;
-                                                       pAd->StaCfg.DLSEntry[i].Valid   = FALSE;
-                                                       RTMPSendDLSTearDownFrame(pAd, pAd->StaCfg.DLSEntry[i].MacAddr);
-                                               }
-                                       }
-
-                                       // tear down peer dls table     entry
-                                       for     (i=MAX_NUM_OF_INIT_DLS_ENTRY; i<MAX_NUM_OF_DLS_ENTRY; i++)
-                                       {
-                                               if (pAd->StaCfg.DLSEntry[i].Valid && (pAd->StaCfg.DLSEntry[i].Status == DLS_FINISH))
-                                               {
-                                                       pAd->StaCfg.DLSEntry[i].Status  = DLS_NONE;
-                                                       pAd->StaCfg.DLSEntry[i].Valid   = FALSE;
-                                                       RTMPSendDLSTearDownFrame(pAd, pAd->StaCfg.DLSEntry[i].MacAddr);
-                                               }
-                                       }
-                               }
-
-                               DBGPRINT(RT_DEBUG_TRACE,("Set::RT_OID_802_11_SET_DLS (=%d)\n", pAd->CommonCfg.bDLSCapable));
-                       }
-                       break;
-
-               case RT_OID_802_11_SET_DLS_PARAM:
-                       if (wrq->u.data.length  != sizeof(RT_802_11_DLS_UI))
-                               Status = -EINVAL;
-                       else
-                       {
-                               RT_802_11_DLS   Dls;
-
-                               NdisZeroMemory(&Dls, sizeof(RT_802_11_DLS));
-                               RTMPMoveMemory(&Dls, wrq->u.data.pointer, sizeof(RT_802_11_DLS_UI));
-                               MlmeEnqueue(pAd,
-                                                       MLME_CNTL_STATE_MACHINE,
-                                                       RT_OID_802_11_SET_DLS_PARAM,
-                                                       sizeof(RT_802_11_DLS),
-                                                       &Dls);
-                               DBGPRINT(RT_DEBUG_TRACE,("Set::RT_OID_802_11_SET_DLS_PARAM \n"));
-                       }
-                       break;
-#endif // QOS_DLS_SUPPORT //
-               case RT_OID_802_11_SET_WMM:
-                       if (wrq->u.data.length  != sizeof(BOOLEAN))
-                               Status = -EINVAL;
-                       else
-                       {
-                               Status = copy_from_user(&pAd->CommonCfg.bWmmCapable, wrq->u.data.pointer, wrq->u.data.length);
-                               DBGPRINT(RT_DEBUG_TRACE, ("Set::RT_OID_802_11_SET_WMM (=%d)     \n", pAd->CommonCfg.bWmmCapable));
-                       }
-                       break;
-
-               case OID_802_11_DISASSOCIATE:
-                       //
-                       // Set NdisRadioStateOff to     TRUE, instead of called MlmeRadioOff.
-                       // Later on, NDIS_802_11_BSSID_LIST_EX->NumberOfItems should be 0
-                       // when query OID_802_11_BSSID_LIST.
-                       //
-                       // TRUE:  NumberOfItems will set to     0.
-                       // FALSE: NumberOfItems no change.
-                       //
-                       pAd->CommonCfg.NdisRadioStateOff =      TRUE;
-                       // Set to immediately send the media disconnect event
-                       pAd->MlmeAux.CurrReqIsFromNdis  = TRUE;
-                       DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_DISASSOCIATE \n"));
-
-
-                       if (INFRA_ON(pAd))
-                       {
-                               if (pAd->Mlme.CntlMachine.CurrState !=  CNTL_IDLE)
-                               {
-                                       RTMP_MLME_RESET_STATE_MACHINE(pAd);
-                                       DBGPRINT(RT_DEBUG_TRACE, ("!!! MLME     busy, reset     MLME state machine !!!\n"));
-                               }
-
-                               MlmeEnqueue(pAd,
-                                       MLME_CNTL_STATE_MACHINE,
-                                       OID_802_11_DISASSOCIATE,
-                                       0,
-                                       NULL);
-
-                               StateMachineTouched     = TRUE;
-                       }
-                       break;
-
-#ifdef DOT11_N_SUPPORT
-               case RT_OID_802_11_SET_IMME_BA_CAP:
-                               if (wrq->u.data.length != sizeof(OID_BACAP_STRUC))
-                                       Status = -EINVAL;
-                               else
-                               {
-                                       OID_BACAP_STRUC Orde ;
-                                       Status = copy_from_user(&Orde, wrq->u.data.pointer, wrq->u.data.length);
-                                       if (Orde.Policy > BA_NOTUSE)
-                                       {
-                                               Status = NDIS_STATUS_INVALID_DATA;
-                                       }
-                                       else if (Orde.Policy == BA_NOTUSE)
-                                       {
-                                               pAd->CommonCfg.BACapability.field.Policy = BA_NOTUSE;
-                                               pAd->CommonCfg.BACapability.field.MpduDensity = Orde.MpduDensity;
-                                               pAd->CommonCfg.DesiredHtPhy.MpduDensity = Orde.MpduDensity;
-                                               pAd->CommonCfg.DesiredHtPhy.AmsduEnable = Orde.AmsduEnable;
-                                               pAd->CommonCfg.DesiredHtPhy.AmsduSize= Orde.AmsduSize;
-                                               pAd->CommonCfg.DesiredHtPhy.MimoPs= Orde.MMPSmode;
-                                               pAd->CommonCfg.BACapability.field.MMPSmode = Orde.MMPSmode;
-                                               // UPdata to HT IE
-                                               pAd->CommonCfg.HtCapability.HtCapInfo.MimoPs = Orde.MMPSmode;
-                                               pAd->CommonCfg.HtCapability.HtCapInfo.AMsduSize = Orde.AmsduSize;
-                                               pAd->CommonCfg.HtCapability.HtCapParm.MpduDensity = Orde.MpduDensity;
-                                       }
-                                       else
-                                       {
-                        pAd->CommonCfg.BACapability.field.AutoBA = Orde.AutoBA;
-                                               pAd->CommonCfg.BACapability.field.Policy = IMMED_BA; // we only support immediate BA.
-                                               pAd->CommonCfg.BACapability.field.MpduDensity = Orde.MpduDensity;
-                                               pAd->CommonCfg.DesiredHtPhy.MpduDensity = Orde.MpduDensity;
-                                               pAd->CommonCfg.DesiredHtPhy.AmsduEnable = Orde.AmsduEnable;
-                                               pAd->CommonCfg.DesiredHtPhy.AmsduSize= Orde.AmsduSize;
-                                               pAd->CommonCfg.DesiredHtPhy.MimoPs = Orde.MMPSmode;
-                                               pAd->CommonCfg.BACapability.field.MMPSmode = Orde.MMPSmode;
-
-                                               // UPdata to HT IE
-                                               pAd->CommonCfg.HtCapability.HtCapInfo.MimoPs = Orde.MMPSmode;
-                                               pAd->CommonCfg.HtCapability.HtCapInfo.AMsduSize = Orde.AmsduSize;
-                                               pAd->CommonCfg.HtCapability.HtCapParm.MpduDensity = Orde.MpduDensity;
-
-                                               if (pAd->CommonCfg.BACapability.field.RxBAWinLimit > MAX_RX_REORDERBUF)
-                                                       pAd->CommonCfg.BACapability.field.RxBAWinLimit = MAX_RX_REORDERBUF;
-
-                                       }
-
-                                       pAd->CommonCfg.REGBACapability.word = pAd->CommonCfg.BACapability.word;
-                                       DBGPRINT(RT_DEBUG_TRACE, ("Set::(Orde.AutoBA = %d) (Policy=%d)(ReBAWinLimit=%d)(TxBAWinLimit=%d)(AutoMode=%d)\n",Orde.AutoBA, pAd->CommonCfg.BACapability.field.Policy,
-                                               pAd->CommonCfg.BACapability.field.RxBAWinLimit,pAd->CommonCfg.BACapability.field.TxBAWinLimit, pAd->CommonCfg.BACapability.field.AutoBA));
-                                       DBGPRINT(RT_DEBUG_TRACE, ("Set::(MimoPs = %d)(AmsduEnable = %d) (AmsduSize=%d)(MpduDensity=%d)\n",pAd->CommonCfg.DesiredHtPhy.MimoPs, pAd->CommonCfg.DesiredHtPhy.AmsduEnable,
-                                               pAd->CommonCfg.DesiredHtPhy.AmsduSize, pAd->CommonCfg.DesiredHtPhy.MpduDensity));
-                               }
-
-                               break;
-               case RT_OID_802_11_ADD_IMME_BA:
-                       DBGPRINT(RT_DEBUG_TRACE, (" Set :: RT_OID_802_11_ADD_IMME_BA \n"));
-                       if (wrq->u.data.length != sizeof(OID_ADD_BA_ENTRY))
-                                       Status = -EINVAL;
-                       else
-                       {
-                               UCHAR                   index;
-                               OID_ADD_BA_ENTRY    BA;
-                               MAC_TABLE_ENTRY     *pEntry;
-
-                               Status = copy_from_user(&BA, wrq->u.data.pointer, wrq->u.data.length);
-                               if (BA.TID > 15)
-                               {
-                                       Status = NDIS_STATUS_INVALID_DATA;
-                                       break;
-                               }
-                               else
-                               {
-                                       //BATableInsertEntry
-                                       //As ad-hoc mode, BA pair is not limited to only BSSID. so add via OID.
-                                       index = BA.TID;
-                                       // in ad hoc mode, when adding BA pair, we should insert this entry into MACEntry too
-                                       pEntry = MacTableLookup(pAd, BA.MACAddr);
-                                       if (!pEntry)
-                                       {
-                                               DBGPRINT(RT_DEBUG_TRACE, ("RT_OID_802_11_ADD_IMME_BA. break on no connection.----:%x:%x\n", BA.MACAddr[4], BA.MACAddr[5]));
-                                               break;
-                                       }
-                                       if (BA.IsRecipient == FALSE)
-                                       {
-                                           if (pEntry->bIAmBadAtheros == TRUE)
-                                                       pAd->CommonCfg.BACapability.field.RxBAWinLimit = 0x10;
-
-                                               BAOriSessionSetUp(pAd, pEntry, index, 0, 100, TRUE);
-                                       }
-                                       else
-                                       {
-                                               //BATableInsertEntry(pAd, pEntry->Aid, BA.MACAddr, 0, 0xffff, BA.TID, BA.nMSDU, BA.IsRecipient);
-                                       }
-
-                                       DBGPRINT(RT_DEBUG_TRACE, ("Set::RT_OID_802_11_ADD_IMME_BA. Rec = %d. Mac = %x:%x:%x:%x:%x:%x . \n",
-                                               BA.IsRecipient, BA.MACAddr[0], BA.MACAddr[1], BA.MACAddr[2], BA.MACAddr[2]
-                                               , BA.MACAddr[4], BA.MACAddr[5]));
-                               }
-                       }
-                       break;
-
-               case RT_OID_802_11_TEAR_IMME_BA:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Set :: RT_OID_802_11_TEAR_IMME_BA \n"));
-                       if (wrq->u.data.length != sizeof(OID_ADD_BA_ENTRY))
-                                       Status = -EINVAL;
-                       else
-                       {
-                               POID_ADD_BA_ENTRY       pBA;
-                               MAC_TABLE_ENTRY *pEntry;
-
-                               pBA = kmalloc(wrq->u.data.length, MEM_ALLOC_FLAG);
-
-                               if (pBA == NULL)
-                               {
-                                       DBGPRINT(RT_DEBUG_TRACE, ("Set :: RT_OID_802_11_TEAR_IMME_BA kmalloc() can't allocate enough memory\n"));
-                                       Status = NDIS_STATUS_FAILURE;
-                               }
-                               else
-                               {
-                                       Status = copy_from_user(pBA, wrq->u.data.pointer, wrq->u.data.length);
-                                       DBGPRINT(RT_DEBUG_TRACE, ("Set :: RT_OID_802_11_TEAR_IMME_BA(TID=%d, bAllTid=%d)\n", pBA->TID, pBA->bAllTid));
-
-                                       if (!pBA->bAllTid && (pBA->TID > NUM_OF_TID))
-                                       {
-                                               Status = NDIS_STATUS_INVALID_DATA;
-                                               break;
-                                       }
-
-                                       if (pBA->IsRecipient == FALSE)
-                                       {
-                                               pEntry = MacTableLookup(pAd, pBA->MACAddr);
-                                               DBGPRINT(RT_DEBUG_TRACE, (" pBA->IsRecipient == FALSE\n"));
-                                               if (pEntry)
-                                               {
-                                                       DBGPRINT(RT_DEBUG_TRACE, (" pBA->pEntry\n"));
-                                                       BAOriSessionTearDown(pAd, pEntry->Aid, pBA->TID, FALSE, TRUE);
-                                               }
-                                               else
-                                                       DBGPRINT(RT_DEBUG_TRACE, ("Set :: Not found pEntry \n"));
-                                       }
-                                       else
-                                       {
-                                               pEntry = MacTableLookup(pAd, pBA->MACAddr);
-                                               if (pEntry)
-                                               {
-                                                       BARecSessionTearDown( pAd, (UCHAR)pEntry->Aid, pBA->TID, TRUE);
-                                               }
-                                               else
-                                                       DBGPRINT(RT_DEBUG_TRACE, ("Set :: Not found pEntry \n"));
-                                       }
-                                       kfree(pBA);
-                               }
-            }
-            break;
-#endif // DOT11_N_SUPPORT //
-
-        // For WPA_SUPPLICANT to set static wep key
-       case OID_802_11_ADD_WEP:
-           pWepKey = kmalloc(wrq->u.data.length, MEM_ALLOC_FLAG);
-
-           if(pWepKey == NULL)
-            {
-                Status = -ENOMEM;
-                               DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_ADD_WEP, Failed!!\n"));
-                break;
-            }
-            Status = copy_from_user(pWepKey, wrq->u.data.pointer, wrq->u.data.length);
-            if (Status)
-            {
-                Status  = -EINVAL;
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_ADD_WEP, Failed (length mismatch)!!\n"));
-            }
-            else
-            {
-                       KeyIdx = pWepKey->KeyIndex & 0x0fffffff;
-                // KeyIdx must be 0 ~ 3
-                if (KeyIdx > 4)
-                       {
-                    Status  = -EINVAL;
-                    DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_ADD_WEP, Failed (KeyIdx must be smaller than 4)!!\n"));
-                }
-                else
-                {
-                    UCHAR CipherAlg = 0;
-                    PUCHAR Key;
-
-                    // set key material and key length
-                    NdisZeroMemory(pAd->SharedKey[BSS0][KeyIdx].Key, 16);
-                    pAd->SharedKey[BSS0][KeyIdx].KeyLen = (UCHAR) pWepKey->KeyLength;
-                    NdisMoveMemory(pAd->SharedKey[BSS0][KeyIdx].Key, &pWepKey->KeyMaterial, pWepKey->KeyLength);
-
-                    switch(pWepKey->KeyLength)
-                    {
-                        case 5:
-                            CipherAlg = CIPHER_WEP64;
-                            break;
-                        case 13:
-                            CipherAlg = CIPHER_WEP128;
-                            break;
-                        default:
-                            DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_ADD_WEP, only support CIPHER_WEP64(len:5) & CIPHER_WEP128(len:13)!!\n"));
-                            Status = -EINVAL;
-                            break;
-                    }
-                    pAd->SharedKey[BSS0][KeyIdx].CipherAlg = CipherAlg;
-
-                    // Default key for tx (shared key)
-                    if (pWepKey->KeyIndex & 0x80000000)
-                    {
-#ifdef WPA_SUPPLICANT_SUPPORT
-                        // set key material and key length
-                        NdisZeroMemory(pAd->StaCfg.DesireSharedKey[KeyIdx].Key, 16);
-                        pAd->StaCfg.DesireSharedKey[KeyIdx].KeyLen = (UCHAR) pWepKey->KeyLength;
-                        NdisMoveMemory(pAd->StaCfg.DesireSharedKey[KeyIdx].Key, &pWepKey->KeyMaterial, pWepKey->KeyLength);
-                        pAd->StaCfg.DesireSharedKeyId = KeyIdx;
-                        pAd->StaCfg.DesireSharedKey[KeyIdx].CipherAlg = CipherAlg;
-#endif // WPA_SUPPLICANT_SUPPORT //
-                        pAd->StaCfg.DefaultKeyId = (UCHAR) KeyIdx;
-                    }
-
-#ifdef WPA_SUPPLICANT_SUPPORT
-                                       if ((pAd->StaCfg.WpaSupplicantUP != WPA_SUPPLICANT_DISABLE) &&
-                                               (pAd->StaCfg.AuthMode >= Ndis802_11AuthModeWPA))
-                                       {
-                                               Key = pWepKey->KeyMaterial;
-
-                                               // Set Group key material to Asic
-                                       AsicAddSharedKeyEntry(pAd, BSS0, KeyIdx, CipherAlg, Key, NULL, NULL);
-
-                                               // Update WCID attribute table and IVEIV table for this group key table
-                                               RTMPAddWcidAttributeEntry(pAd, BSS0, KeyIdx, CipherAlg, NULL);
-
-                                               STA_PORT_SECURED(pAd);
-
-                                       // Indicate Connected for GUI
-                                       pAd->IndicateMediaState = NdisMediaStateConnected;
-                                       }
-                    else if (pAd->StaCfg.PortSecured == WPA_802_1X_PORT_SECURED)
-#endif // WPA_SUPPLICANT_SUPPORT
-                    {
-                        Key = pAd->SharedKey[BSS0][KeyIdx].Key;
-
-                        // Set key material and cipherAlg to Asic
-                                       AsicAddSharedKeyEntry(pAd, BSS0, KeyIdx, CipherAlg, Key, NULL, NULL);
-
-                        if (pWepKey->KeyIndex & 0x80000000)
-                        {
-                            PMAC_TABLE_ENTRY pEntry = &pAd->MacTab.Content[BSSID_WCID];
-                            // Assign group key info
-                                               RTMPAddWcidAttributeEntry(pAd, BSS0, KeyIdx, CipherAlg, NULL);
-                                               // Assign pairwise key info
-                                               RTMPAddWcidAttributeEntry(pAd, BSS0, KeyIdx, CipherAlg, pEntry);
-                        }
-                    }
-                                       DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_ADD_WEP (id=0x%x, Len=%d-byte), %s\n", pWepKey->KeyIndex, pWepKey->KeyLength, (pAd->StaCfg.PortSecured == WPA_802_1X_PORT_SECURED) ? "Port Secured":"Port NOT Secured"));
-                               }
-            }
-            kfree(pWepKey);
-            break;
-#ifdef WPA_SUPPLICANT_SUPPORT
-           case OID_SET_COUNTERMEASURES:
-            if (wrq->u.data.length != sizeof(int))
-                Status  = -EINVAL;
-            else
-            {
-                int enabled = 0;
-                Status = copy_from_user(&enabled, wrq->u.data.pointer, wrq->u.data.length);
-                if (enabled == 1)
-                    pAd->StaCfg.bBlockAssoc = TRUE;
-                else
-                    // WPA MIC error should block association attempt for 60 seconds
-                    pAd->StaCfg.bBlockAssoc = FALSE;
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_SET_COUNTERMEASURES bBlockAssoc=%s\n", pAd->StaCfg.bBlockAssoc ? "TRUE":"FALSE"));
-            }
-               break;
-        case RT_OID_WPA_SUPPLICANT_SUPPORT:
-                       if (wrq->u.data.length != sizeof(UCHAR))
-                Status  = -EINVAL;
-            else
-            {
-                Status = copy_from_user(&wpa_supplicant_enable, wrq->u.data.pointer, wrq->u.data.length);
-                       pAd->StaCfg.WpaSupplicantUP = wpa_supplicant_enable;
-                       DBGPRINT(RT_DEBUG_TRACE, ("Set::RT_OID_WPA_SUPPLICANT_SUPPORT (=%d)\n", pAd->StaCfg.WpaSupplicantUP));
-                       }
-            break;
-        case OID_802_11_DEAUTHENTICATION:
-            if (wrq->u.data.length != sizeof(MLME_DEAUTH_REQ_STRUCT))
-                Status  = -EINVAL;
-            else
-            {
-                MLME_DEAUTH_REQ_STRUCT      *pInfo;
-               MLME_QUEUE_ELEM *MsgElem = (MLME_QUEUE_ELEM *) kmalloc(sizeof(MLME_QUEUE_ELEM), MEM_ALLOC_FLAG);
-                if (MsgElem == NULL)
-                {
-                       DBGPRINT(RT_DEBUG_ERROR, ("%s():alloc memory failed!\n", __FUNCTION__));
-                        return -EINVAL;
-                }
-
-                pInfo = (MLME_DEAUTH_REQ_STRUCT *) MsgElem->Msg;
-                Status = copy_from_user(pInfo, wrq->u.data.pointer, wrq->u.data.length);
-                MlmeDeauthReqAction(pAd, MsgElem);
-                               kfree(MsgElem);
-
-                if (INFRA_ON(pAd))
-                {
-                    LinkDown(pAd, FALSE);
-                    pAd->Mlme.AssocMachine.CurrState = ASSOC_IDLE;
-                }
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_DEAUTHENTICATION (Reason=%d)\n", pInfo->Reason));
-            }
-            break;
-        case OID_802_11_DROP_UNENCRYPTED:
-            if (wrq->u.data.length != sizeof(int))
-                Status  = -EINVAL;
-            else
-            {
-                int enabled = 0;
-                Status = copy_from_user(&enabled, wrq->u.data.pointer, wrq->u.data.length);
-                if (enabled == 1)
-                    pAd->StaCfg.PortSecured = WPA_802_1X_PORT_NOT_SECURED;
-                else
-                    pAd->StaCfg.PortSecured = WPA_802_1X_PORT_SECURED;
-                               NdisAcquireSpinLock(&pAd->MacTabLock);
-                               pAd->MacTab.Content[BSSID_WCID].PortSecured = pAd->StaCfg.PortSecured;
-                               NdisReleaseSpinLock(&pAd->MacTabLock);
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_DROP_UNENCRYPTED (=%d)\n", enabled));
-            }
-            break;
-        case OID_802_11_SET_IEEE8021X:
-            if (wrq->u.data.length != sizeof(BOOLEAN))
-                Status  = -EINVAL;
-            else
-            {
-                Status = copy_from_user(&IEEE8021xState, wrq->u.data.pointer, wrq->u.data.length);
-                       pAd->StaCfg.IEEE8021X = IEEE8021xState;
-                DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_SET_IEEE8021X (=%d)\n", IEEE8021xState));
-            }
-            break;
-        case OID_802_11_SET_IEEE8021X_REQUIRE_KEY:
-                       if (wrq->u.data.length != sizeof(BOOLEAN))
-                                Status  = -EINVAL;
-            else
-            {
-                Status = copy_from_user(&IEEE8021x_required_keys, wrq->u.data.pointer, wrq->u.data.length);
-                               pAd->StaCfg.IEEE8021x_required_keys = IEEE8021x_required_keys;
-                               DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_SET_IEEE8021X_REQUIRE_KEY (%d)\n", IEEE8021x_required_keys));
-                       }
-                       break;
-        case OID_802_11_PMKID:
-               pPmkId = kmalloc(wrq->u.data.length, MEM_ALLOC_FLAG);
-
-               if(pPmkId == NULL) {
-                Status = -ENOMEM;
-                break;
-            }
-            Status = copy_from_user(pPmkId, wrq->u.data.pointer, wrq->u.data.length);
-
-               // check the PMKID information
-               if (pPmkId->BSSIDInfoCount == 0)
-                NdisZeroMemory(pAd->StaCfg.SavedPMK, sizeof(BSSID_INFO)*PMKID_NO);
-               else
-               {
-                       PBSSID_INFO     pBssIdInfo;
-                       UINT            BssIdx;
-                       UINT            CachedIdx;
-
-                       for (BssIdx = 0; BssIdx < pPmkId->BSSIDInfoCount; BssIdx++)
-                       {
-                               // point to the indexed BSSID_INFO structure
-                               pBssIdInfo = (PBSSID_INFO) ((PUCHAR) pPmkId + 2 * sizeof(UINT) + BssIdx * sizeof(BSSID_INFO));
-                               // Find the entry in the saved data base.
-                               for (CachedIdx = 0; CachedIdx < pAd->StaCfg.SavedPMKNum; CachedIdx++)
-                               {
-                                       // compare the BSSID
-                                       if (NdisEqualMemory(pBssIdInfo->BSSID, pAd->StaCfg.SavedPMK[CachedIdx].BSSID, sizeof(NDIS_802_11_MAC_ADDRESS)))
-                                               break;
-                               }
-
-                               // Found, replace it
-                               if (CachedIdx < PMKID_NO)
-                               {
-                                       DBGPRINT(RT_DEBUG_OFF, ("Update OID_802_11_PMKID, idx = %d\n", CachedIdx));
-                                       NdisMoveMemory(&pAd->StaCfg.SavedPMK[CachedIdx], pBssIdInfo, sizeof(BSSID_INFO));
-                                       pAd->StaCfg.SavedPMKNum++;
-                               }
-                               // Not found, replace the last one
-                               else
-                               {
-                                       // Randomly replace one
-                                       CachedIdx = (pBssIdInfo->BSSID[5] % PMKID_NO);
-                                       DBGPRINT(RT_DEBUG_OFF, ("Update OID_802_11_PMKID, idx = %d\n", CachedIdx));
-                                       NdisMoveMemory(&pAd->StaCfg.SavedPMK[CachedIdx], pBssIdInfo, sizeof(BSSID_INFO));
-                               }
-                       }
-                       }
-                       if(pPmkId)
-                               kfree(pPmkId);
-               break;
-#endif // WPA_SUPPLICANT_SUPPORT //
-
-
-
-#ifdef SNMP_SUPPORT
-               case OID_802_11_SHORTRETRYLIMIT:
-                       if (wrq->u.data.length != sizeof(ULONG))
-                               Status = -EINVAL;
-                       else
-                       {
-                               Status = copy_from_user(&ShortRetryLimit, wrq->u.data.pointer, wrq->u.data.length);
-                               RTMP_IO_READ32(pAd, TX_RTY_CFG, &tx_rty_cfg.word);
-                               tx_rty_cfg.field.ShortRtyLimit = ShortRetryLimit;
-                               RTMP_IO_WRITE32(pAd, TX_RTY_CFG, tx_rty_cfg.word);
-                               DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_SHORTRETRYLIMIT (tx_rty_cfg.field.ShortRetryLimit=%d, ShortRetryLimit=%ld)\n", tx_rty_cfg.field.ShortRtyLimit, ShortRetryLimit));
-                       }
-                       break;
-
-               case OID_802_11_LONGRETRYLIMIT:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_LONGRETRYLIMIT \n"));
-                       if (wrq->u.data.length != sizeof(ULONG))
-                               Status = -EINVAL;
-                       else
-                       {
-                               Status = copy_from_user(&LongRetryLimit, wrq->u.data.pointer, wrq->u.data.length);
-                               RTMP_IO_READ32(pAd, TX_RTY_CFG, &tx_rty_cfg.word);
-                               tx_rty_cfg.field.LongRtyLimit = LongRetryLimit;
-                               RTMP_IO_WRITE32(pAd, TX_RTY_CFG, tx_rty_cfg.word);
-                               DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_LONGRETRYLIMIT (tx_rty_cfg.field.LongRetryLimit= %d,LongRetryLimit=%ld)\n", tx_rty_cfg.field.LongRtyLimit, LongRetryLimit));
-                       }
-                       break;
-
-               case OID_802_11_WEPDEFAULTKEYVALUE:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_WEPDEFAULTKEYVALUE\n"));
-                       pKey = kmalloc(wrq->u.data.length, GFP_KERNEL);
-                       Status = copy_from_user(pKey, wrq->u.data.pointer, wrq->u.data.length);
-                       //pKey = &WepKey;
-
-                       if ( pKey->Length != wrq->u.data.length)
-                       {
-                               Status = -EINVAL;
-                               DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_WEPDEFAULTKEYVALUE, Failed!!\n"));
-                       }
-                       KeyIdx = pKey->KeyIndex & 0x0fffffff;
-                       DBGPRINT(RT_DEBUG_TRACE,("pKey->KeyIndex =%d, pKey->KeyLength=%d\n", pKey->KeyIndex, pKey->KeyLength));
-
-                       // it is a shared key
-                       if (KeyIdx > 4)
-                               Status = -EINVAL;
-                       else
-                       {
-                               pAd->SharedKey[BSS0][pAd->StaCfg.DefaultKeyId].KeyLen = (UCHAR) pKey->KeyLength;
-                               NdisMoveMemory(&pAd->SharedKey[BSS0][pAd->StaCfg.DefaultKeyId].Key, &pKey->KeyMaterial, pKey->KeyLength);
-                               if (pKey->KeyIndex & 0x80000000)
-                               {
-                                       // Default key for tx (shared key)
-                                       pAd->StaCfg.DefaultKeyId = (UCHAR) KeyIdx;
-                               }
-                               //RestartAPIsRequired = TRUE;
-                       }
-                       break;
-
-
-               case OID_802_11_WEPDEFAULTKEYID:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_WEPDEFAULTKEYID \n"));
-
-                       if (wrq->u.data.length != sizeof(UCHAR))
-                               Status = -EINVAL;
-                       else
-                               Status = copy_from_user(&pAd->StaCfg.DefaultKeyId, wrq->u.data.pointer, wrq->u.data.length);
-
-                       break;
-
-
-               case OID_802_11_CURRENTCHANNEL:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Set::OID_802_11_CURRENTCHANNEL \n"));
-                       if (wrq->u.data.length != sizeof(UCHAR))
-                               Status = -EINVAL;
-                       else
-                       {
-                               Status = copy_from_user(&ctmp, wrq->u.data.pointer, wrq->u.data.length);
-                               sprintf((PSTRING)&ctmp,"%d", ctmp);
-                               Set_Channel_Proc(pAd, (PSTRING)&ctmp);
-                       }
-                       break;
-#endif
-
-
-
-               case RT_OID_802_11_SET_PSPXLINK_MODE:
-                       if (wrq->u.data.length != sizeof(BOOLEAN))
-                Status  = -EINVAL;
-            else
-            {
-                Status = copy_from_user(&pAd->CommonCfg.PSPXlink, wrq->u.data.pointer, wrq->u.data.length);
-                               /*if (pAd->CommonCfg.PSPXlink)
-                                       RX_FILTER_SET_FLAG(pAd, fRX_FILTER_ACCEPT_PROMISCUOUS)*/
-                               DBGPRINT(RT_DEBUG_TRACE,("Set::RT_OID_802_11_SET_PSPXLINK_MODE(=%d) \n", pAd->CommonCfg.PSPXlink));
-            }
-                       break;
-
-
-        default:
-            DBGPRINT(RT_DEBUG_TRACE, ("Set::unknown IOCTL's subcmd = 0x%08x\n", cmd));
-            Status = -EOPNOTSUPP;
-            break;
-    }
-
-
-    return Status;
-}
-
-INT RTMPQueryInformation(
-    IN  PRTMP_ADAPTER pAd,
-    IN  OUT struct ifreq    *rq,
-    IN  INT                 cmd)
-{
-    struct iwreq                        *wrq = (struct iwreq *) rq;
-    NDIS_802_11_BSSID_LIST_EX           *pBssidList = NULL;
-    PNDIS_WLAN_BSSID_EX                 pBss;
-    NDIS_802_11_SSID                    Ssid;
-    NDIS_802_11_CONFIGURATION           *pConfiguration = NULL;
-    RT_802_11_LINK_STATUS               *pLinkStatus = NULL;
-    RT_802_11_STA_CONFIG                *pStaConfig = NULL;
-    NDIS_802_11_STATISTICS              *pStatistics = NULL;
-    NDIS_802_11_RTS_THRESHOLD           RtsThresh;
-    NDIS_802_11_FRAGMENTATION_THRESHOLD FragThresh;
-    NDIS_802_11_POWER_MODE              PowerMode;
-    NDIS_802_11_NETWORK_INFRASTRUCTURE  BssType;
-    RT_802_11_PREAMBLE                  PreamType;
-    NDIS_802_11_AUTHENTICATION_MODE     AuthMode;
-    NDIS_802_11_WEP_STATUS              WepStatus;
-    NDIS_MEDIA_STATE                    MediaState;
-    ULONG                               BssBufSize, ulInfo=0, NetworkTypeList[4], apsd = 0;
-    USHORT                              BssLen = 0;
-    PUCHAR                              pBuf = NULL, pPtr;
-    INT                                 Status = NDIS_STATUS_SUCCESS;
-    UINT                                we_version_compiled;
-    UCHAR                               i, Padding = 0;
-    BOOLEAN                             RadioState;
-       STRING                                                          driverVersion[8];
-    OID_SET_HT_PHYMODE                         *pHTPhyMode = NULL;
-
-
-#ifdef SNMP_SUPPORT
-       //for snmp, kathy
-       DefaultKeyIdxValue                      *pKeyIdxValue;
-       INT                                                     valueLen;
-       TX_RTY_CFG_STRUC                        tx_rty_cfg;
-       ULONG                                           ShortRetryLimit, LongRetryLimit;
-       UCHAR                                           tmp[64];
-#endif //SNMP
-
-    switch(cmd)
-    {
-        case RT_OID_DEVICE_NAME:
-            wrq->u.data.length = sizeof(pAd->nickname);
-            Status = copy_to_user(wrq->u.data.pointer, pAd->nickname, wrq->u.data.length);
-            break;
-        case RT_OID_VERSION_INFO:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_VERSION_INFO \n"));
-                       wrq->u.data.length = 8*sizeof(CHAR);
-                       sprintf(&driverVersion[0], "%s", STA_DRIVER_VERSION);
-                       driverVersion[7] = '\0';
-                       if (copy_to_user(wrq->u.data.pointer, &driverVersion[0], wrq->u.data.length))
-            {
-                               Status = -EFAULT;
-            }
-            break;
-
-        case OID_802_11_BSSID_LIST:
-            if (RTMP_TEST_FLAG(pAd, fRTMP_ADAPTER_BSS_SCAN_IN_PROGRESS))
-            {
-               /*
-                * Still scanning, indicate the caller should try again.
-                */
-               DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_BSSID_LIST (Still scanning)\n"));
-                               return -EAGAIN;
-            }
-            DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_BSSID_LIST (%d BSS returned)\n",pAd->ScanTab.BssNr));
-                       pAd->StaCfg.bScanReqIsFromWebUI = FALSE;
-            // Claculate total buffer size required
-            BssBufSize = sizeof(ULONG);
-
-            for (i = 0; i < pAd->ScanTab.BssNr; i++)
-            {
-                // Align pointer to 4 bytes boundary.
-                //Padding = 4 - (pAdapter->ScanTab.BssEntry[i].VarIELen & 0x0003);
-                //if (Padding == 4)
-                //    Padding = 0;
-                BssBufSize += (sizeof(NDIS_WLAN_BSSID_EX) - 1 + sizeof(NDIS_802_11_FIXED_IEs) + pAd->ScanTab.BssEntry[i].VarIELen + Padding);
-            }
-
-            // For safety issue, we add 256 bytes just in case
-            BssBufSize += 256;
-            // Allocate the same size as passed from higher layer
-            pBuf = kmalloc(BssBufSize, MEM_ALLOC_FLAG);
-            if(pBuf == NULL)
-            {
-                Status = -ENOMEM;
-                break;
-            }
-            // Init 802_11_BSSID_LIST_EX structure
-            NdisZeroMemory(pBuf, BssBufSize);
-            pBssidList = (PNDIS_802_11_BSSID_LIST_EX) pBuf;
-            pBssidList->NumberOfItems = pAd->ScanTab.BssNr;
-
-            // Calculate total buffer length
-            BssLen = 4; // Consist of NumberOfItems
-            // Point to start of NDIS_WLAN_BSSID_EX
-            // pPtr = pBuf + sizeof(ULONG);
-            pPtr = (PUCHAR) &pBssidList->Bssid[0];
-            for (i = 0; i < pAd->ScanTab.BssNr; i++)
-            {
-                pBss = (PNDIS_WLAN_BSSID_EX) pPtr;
-                NdisMoveMemory(&pBss->MacAddress, &pAd->ScanTab.BssEntry[i].Bssid, MAC_ADDR_LEN);
-                if ((pAd->ScanTab.BssEntry[i].Hidden == 1) && (pAd->StaCfg.bShowHiddenSSID == FALSE))
-                {
-                    //
-                                       // We must return this SSID during 4way handshaking, otherwise Aegis will failed to parse WPA infomation
-                                       // and then failed to send EAPOl farame.
-                                       //
-                                       if ((pAd->StaCfg.AuthMode >= Ndis802_11AuthModeWPA) && (pAd->StaCfg.PortSecured != WPA_802_1X_PORT_SECURED))
-                                       {
-                                               pBss->Ssid.SsidLength = pAd->ScanTab.BssEntry[i].SsidLen;
-                                               NdisMoveMemory(pBss->Ssid.Ssid, pAd->ScanTab.BssEntry[i].Ssid, pAd->ScanTab.BssEntry[i].SsidLen);
-                                       }
-                                       else
-                       pBss->Ssid.SsidLength = 0;
-                }
-                else
-                {
-                    pBss->Ssid.SsidLength = pAd->ScanTab.BssEntry[i].SsidLen;
-                    NdisMoveMemory(pBss->Ssid.Ssid, pAd->ScanTab.BssEntry[i].Ssid, pAd->ScanTab.BssEntry[i].SsidLen);
-                }
-                pBss->Privacy = pAd->ScanTab.BssEntry[i].Privacy;
-                pBss->Rssi = pAd->ScanTab.BssEntry[i].Rssi - pAd->BbpRssiToDbmDelta;
-                pBss->NetworkTypeInUse = NetworkTypeInUseSanity(&pAd->ScanTab.BssEntry[i]);
-                pBss->Configuration.Length = sizeof(NDIS_802_11_CONFIGURATION);
-                pBss->Configuration.BeaconPeriod = pAd->ScanTab.BssEntry[i].BeaconPeriod;
-                pBss->Configuration.ATIMWindow = pAd->ScanTab.BssEntry[i].AtimWin;
-
-                MAP_CHANNEL_ID_TO_KHZ(pAd->ScanTab.BssEntry[i].Channel, pBss->Configuration.DSConfig);
-
-                if (pAd->ScanTab.BssEntry[i].BssType == BSS_INFRA)
-                    pBss->InfrastructureMode = Ndis802_11Infrastructure;
-                else
-                    pBss->InfrastructureMode = Ndis802_11IBSS;
-
-                NdisMoveMemory(pBss->SupportedRates, pAd->ScanTab.BssEntry[i].SupRate, pAd->ScanTab.BssEntry[i].SupRateLen);
-                NdisMoveMemory(pBss->SupportedRates + pAd->ScanTab.BssEntry[i].SupRateLen,
-                               pAd->ScanTab.BssEntry[i].ExtRate,
-                               pAd->ScanTab.BssEntry[i].ExtRateLen);
-
-                if (pAd->ScanTab.BssEntry[i].VarIELen == 0)
-                {
-                    pBss->IELength = sizeof(NDIS_802_11_FIXED_IEs);
-                    NdisMoveMemory(pBss->IEs, &pAd->ScanTab.BssEntry[i].FixIEs, sizeof(NDIS_802_11_FIXED_IEs));
-                    pPtr = pPtr + sizeof(NDIS_WLAN_BSSID_EX) - 1 + sizeof(NDIS_802_11_FIXED_IEs);
-                }
-                else
-                {
-                    pBss->IELength = (ULONG)(sizeof(NDIS_802_11_FIXED_IEs) + pAd->ScanTab.BssEntry[i].VarIELen);
-                    pPtr = pPtr + sizeof(NDIS_WLAN_BSSID_EX) - 1 + sizeof(NDIS_802_11_FIXED_IEs);
-                    NdisMoveMemory(pBss->IEs, &pAd->ScanTab.BssEntry[i].FixIEs, sizeof(NDIS_802_11_FIXED_IEs));
-                    NdisMoveMemory(pBss->IEs + sizeof(NDIS_802_11_FIXED_IEs), pAd->ScanTab.BssEntry[i].VarIEs, pAd->ScanTab.BssEntry[i].VarIELen);
-                    pPtr += pAd->ScanTab.BssEntry[i].VarIELen;
-                }
-                pBss->Length = (ULONG)(sizeof(NDIS_WLAN_BSSID_EX) - 1 + sizeof(NDIS_802_11_FIXED_IEs) + pAd->ScanTab.BssEntry[i].VarIELen + Padding);
-
-#if WIRELESS_EXT < 17
-                if ((BssLen + pBss->Length) < wrq->u.data.length)
-                BssLen += pBss->Length;
-                else
-                {
-                    pBssidList->NumberOfItems = i;
-                    break;
-                }
-#else
-                BssLen += pBss->Length;
-#endif
-            }
-
-#if WIRELESS_EXT < 17
-            wrq->u.data.length = BssLen;
-#else
-            if (BssLen > wrq->u.data.length)
-            {
-                kfree(pBssidList);
-                return -E2BIG;
-            }
-            else
-                wrq->u.data.length = BssLen;
-#endif
-            Status = copy_to_user(wrq->u.data.pointer, pBssidList, BssLen);
-            kfree(pBssidList);
-            break;
-        case OID_802_3_CURRENT_ADDRESS:
-            wrq->u.data.length = MAC_ADDR_LEN;
-            Status = copy_to_user(wrq->u.data.pointer, &pAd->CurrentAddress, wrq->u.data.length);
-            break;
-        case OID_GEN_MEDIA_CONNECT_STATUS:
-            if (pAd->IndicateMediaState == NdisMediaStateConnected)
-                MediaState = NdisMediaStateConnected;
-            else
-                MediaState = NdisMediaStateDisconnected;
-
-            wrq->u.data.length = sizeof(NDIS_MEDIA_STATE);
-            Status = copy_to_user(wrq->u.data.pointer, &MediaState, wrq->u.data.length);
-            break;
-        case OID_802_11_BSSID:
-            if (INFRA_ON(pAd) || ADHOC_ON(pAd))
-            {
-                Status = copy_to_user(wrq->u.data.pointer, &pAd->CommonCfg.Bssid, sizeof(NDIS_802_11_MAC_ADDRESS));
-
-            }
-            else
-            {
-                DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_BSSID(=EMPTY)\n"));
-                Status = -ENOTCONN;
-            }
-            break;
-        case OID_802_11_SSID:
-                       NdisZeroMemory(&Ssid, sizeof(NDIS_802_11_SSID));
-                       NdisZeroMemory(Ssid.Ssid, MAX_LEN_OF_SSID);
-            Ssid.SsidLength = pAd->CommonCfg.SsidLen;
-                       memcpy(Ssid.Ssid, pAd->CommonCfg.Ssid,  Ssid.SsidLength);
-            wrq->u.data.length = sizeof(NDIS_802_11_SSID);
-            Status = copy_to_user(wrq->u.data.pointer, &Ssid, wrq->u.data.length);
-            DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_SSID (Len=%d, ssid=%s)\n", Ssid.SsidLength,Ssid.Ssid));
-            break;
-        case RT_OID_802_11_QUERY_LINK_STATUS:
-            pLinkStatus = (RT_802_11_LINK_STATUS *) kmalloc(sizeof(RT_802_11_LINK_STATUS), MEM_ALLOC_FLAG);
-            if (pLinkStatus)
-            {
-                pLinkStatus->CurrTxRate = RateIdTo500Kbps[pAd->CommonCfg.TxRate];   // unit : 500 kbps
-                pLinkStatus->ChannelQuality = pAd->Mlme.ChannelQuality;
-                pLinkStatus->RxByteCount = pAd->RalinkCounters.ReceivedByteCount;
-                pLinkStatus->TxByteCount = pAd->RalinkCounters.TransmittedByteCount;
-                       pLinkStatus->CentralChannel = pAd->CommonCfg.CentralChannel;
-                wrq->u.data.length = sizeof(RT_802_11_LINK_STATUS);
-                Status = copy_to_user(wrq->u.data.pointer, pLinkStatus, wrq->u.data.length);
-                kfree(pLinkStatus);
-                DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_QUERY_LINK_STATUS\n"));
-            }
-            else
-            {
-                DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_QUERY_LINK_STATUS(kmalloc failed)\n"));
-                Status = -EFAULT;
-            }
-            break;
-        case OID_802_11_CONFIGURATION:
-            pConfiguration = (NDIS_802_11_CONFIGURATION *) kmalloc(sizeof(NDIS_802_11_CONFIGURATION), MEM_ALLOC_FLAG);
-            if (pConfiguration)
-            {
-                pConfiguration->Length = sizeof(NDIS_802_11_CONFIGURATION);
-                pConfiguration->BeaconPeriod = pAd->CommonCfg.BeaconPeriod;
-                pConfiguration->ATIMWindow = pAd->StaActive.AtimWin;
-                MAP_CHANNEL_ID_TO_KHZ(pAd->CommonCfg.Channel, pConfiguration->DSConfig);
-                wrq->u.data.length = sizeof(NDIS_802_11_CONFIGURATION);
-                Status = copy_to_user(wrq->u.data.pointer, pConfiguration, wrq->u.data.length);
-                DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_CONFIGURATION(BeaconPeriod=%ld,AtimW=%ld,Channel=%d) \n",
-                                        pConfiguration->BeaconPeriod, pConfiguration->ATIMWindow, pAd->CommonCfg.Channel));
-                               kfree(pConfiguration);
-            }
-            else
-            {
-                DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_CONFIGURATION(kmalloc failed)\n"));
-                Status = -EFAULT;
-            }
-            break;
-               case RT_OID_802_11_SNR_0:
-                       if ((pAd->StaCfg.LastSNR0 > 0))
-                       {
-                               ulInfo = ((0xeb - pAd->StaCfg.LastSNR0) * 3) /  16 ;
-                               wrq->u.data.length = sizeof(ulInfo);
-                               Status = copy_to_user(wrq->u.data.pointer, &ulInfo,     wrq->u.data.length);
-                               DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_SNR_0(0x=%lx)\n", ulInfo));
-                       }
-            else
-                           Status = -EFAULT;
-                       break;
-               case RT_OID_802_11_SNR_1:
-                       if ((pAd->Antenna.field.RxPath  > 1) &&
-                (pAd->StaCfg.LastSNR1 > 0))
-                       {
-                               ulInfo = ((0xeb - pAd->StaCfg.LastSNR1) * 3) /  16 ;
-                               wrq->u.data.length = sizeof(ulInfo);
-                               Status = copy_to_user(wrq->u.data.pointer, &ulInfo,     wrq->u.data.length);
-                               DBGPRINT(RT_DEBUG_TRACE,("Query::RT_OID_802_11_SNR_1(0x=%lx)\n",ulInfo));
-                       }
-                       else
-                               Status = -EFAULT;
-            DBGPRINT(RT_DEBUG_TRACE,("Query::RT_OID_802_11_SNR_1(pAd->StaCfg.LastSNR1=%d)\n",pAd->StaCfg.LastSNR1));
-                       break;
-        case OID_802_11_RSSI_TRIGGER:
-            ulInfo = pAd->StaCfg.RssiSample.LastRssi0 - pAd->BbpRssiToDbmDelta;
-            wrq->u.data.length = sizeof(ulInfo);
-            Status = copy_to_user(wrq->u.data.pointer, &ulInfo, wrq->u.data.length);
-            DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_RSSI_TRIGGER(=%ld)\n", ulInfo));
-            break;
-               case OID_802_11_RSSI:
-        case RT_OID_802_11_RSSI:
-                       ulInfo = pAd->StaCfg.RssiSample.LastRssi0;
-                       wrq->u.data.length = sizeof(ulInfo);
-                       Status = copy_to_user(wrq->u.data.pointer, &ulInfo,     wrq->u.data.length);
-                       break;
-               case RT_OID_802_11_RSSI_1:
-            ulInfo = pAd->StaCfg.RssiSample.LastRssi1;
-                       wrq->u.data.length = sizeof(ulInfo);
-                       Status = copy_to_user(wrq->u.data.pointer, &ulInfo,     wrq->u.data.length);
-                       break;
-        case RT_OID_802_11_RSSI_2:
-            ulInfo = pAd->StaCfg.RssiSample.LastRssi2;
-                       wrq->u.data.length = sizeof(ulInfo);
-                       Status = copy_to_user(wrq->u.data.pointer, &ulInfo,     wrq->u.data.length);
-                       break;
-        case OID_802_11_STATISTICS:
-            pStatistics = (NDIS_802_11_STATISTICS *) kmalloc(sizeof(NDIS_802_11_STATISTICS), MEM_ALLOC_FLAG);
-            if (pStatistics)
-            {
-                DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_STATISTICS \n"));
-                // add the most up-to-date h/w raw counters into software counters
-                           NICUpdateRawCounters(pAd);
-
-                // Sanity check for calculation of sucessful count
-                if (pAd->WlanCounters.TransmittedFragmentCount.QuadPart < pAd->WlanCounters.RetryCount.QuadPart)
-                    pAd->WlanCounters.TransmittedFragmentCount.QuadPart = pAd->WlanCounters.RetryCount.QuadPart;
-
-                pStatistics->TransmittedFragmentCount.QuadPart = pAd->WlanCounters.TransmittedFragmentCount.QuadPart;
-                pStatistics->MulticastTransmittedFrameCount.QuadPart = pAd->WlanCounters.MulticastTransmittedFrameCount.QuadPart;
-                pStatistics->FailedCount.QuadPart = pAd->WlanCounters.FailedCount.QuadPart;
-                pStatistics->RetryCount.QuadPart = pAd->WlanCounters.RetryCount.QuadPart;
-                pStatistics->MultipleRetryCount.QuadPart = pAd->WlanCounters.MultipleRetryCount.QuadPart;
-                pStatistics->RTSSuccessCount.QuadPart = pAd->WlanCounters.RTSSuccessCount.QuadPart;
-                pStatistics->RTSFailureCount.QuadPart = pAd->WlanCounters.RTSFailureCount.QuadPart;
-                pStatistics->ACKFailureCount.QuadPart = pAd->WlanCounters.ACKFailureCount.QuadPart;
-                pStatistics->FrameDuplicateCount.QuadPart = pAd->WlanCounters.FrameDuplicateCount.QuadPart;
-                pStatistics->ReceivedFragmentCount.QuadPart = pAd->WlanCounters.ReceivedFragmentCount.QuadPart;
-                pStatistics->MulticastReceivedFrameCount.QuadPart = pAd->WlanCounters.MulticastReceivedFrameCount.QuadPart;
-#ifdef DBG
-                pStatistics->FCSErrorCount = pAd->RalinkCounters.RealFcsErrCount;
-#else
-                pStatistics->FCSErrorCount.QuadPart = pAd->WlanCounters.FCSErrorCount.QuadPart;
-                pStatistics->FrameDuplicateCount.u.LowPart = pAd->WlanCounters.FrameDuplicateCount.u.LowPart / 100;
-#endif
-                wrq->u.data.length = sizeof(NDIS_802_11_STATISTICS);
-                Status = copy_to_user(wrq->u.data.pointer, pStatistics, wrq->u.data.length);
-                kfree(pStatistics);
-            }
-            else
-            {
-                DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_STATISTICS(kmalloc failed)\n"));
-                Status = -EFAULT;
-            }
-            break;
-        case OID_GEN_RCV_OK:
-            ulInfo = pAd->Counters8023.GoodReceives;
-            wrq->u.data.length = sizeof(ulInfo);
-            Status = copy_to_user(wrq->u.data.pointer, &ulInfo, wrq->u.data.length);
-            break;
-        case OID_GEN_RCV_NO_BUFFER:
-            ulInfo = pAd->Counters8023.RxNoBuffer;
-            wrq->u.data.length = sizeof(ulInfo);
-            Status = copy_to_user(wrq->u.data.pointer, &ulInfo, wrq->u.data.length);
-            break;
-        case RT_OID_802_11_PHY_MODE:
-            ulInfo = (ULONG)pAd->CommonCfg.PhyMode;
-            wrq->u.data.length = sizeof(ulInfo);
-            Status = copy_to_user(wrq->u.data.pointer, &ulInfo, wrq->u.data.length);
-            DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_PHY_MODE (=%ld)\n", ulInfo));
-            break;
-        case RT_OID_802_11_STA_CONFIG:
-            pStaConfig = (RT_802_11_STA_CONFIG *) kmalloc(sizeof(RT_802_11_STA_CONFIG), MEM_ALLOC_FLAG);
-            if (pStaConfig)
-            {
-                DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_STA_CONFIG\n"));
-                pStaConfig->EnableTxBurst = pAd->CommonCfg.bEnableTxBurst;
-                pStaConfig->EnableTurboRate = 0;
-                pStaConfig->UseBGProtection = pAd->CommonCfg.UseBGProtection;
-                pStaConfig->UseShortSlotTime = pAd->CommonCfg.bUseShortSlotTime;
-                //pStaConfig->AdhocMode = pAd->StaCfg.AdhocMode;
-                pStaConfig->HwRadioStatus = (pAd->StaCfg.bHwRadio == TRUE) ? 1 : 0;
-                pStaConfig->Rsv1 = 0;
-                pStaConfig->SystemErrorBitmap = pAd->SystemErrorBitmap;
-                wrq->u.data.length = sizeof(RT_802_11_STA_CONFIG);
-                Status = copy_to_user(wrq->u.data.pointer, pStaConfig, wrq->u.data.length);
-                kfree(pStaConfig);
-            }
-            else
-            {
-                DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_STA_CONFIG(kmalloc failed)\n"));
-                Status = -EFAULT;
-            }
-            break;
-        case OID_802_11_RTS_THRESHOLD:
-            RtsThresh = pAd->CommonCfg.RtsThreshold;
-            wrq->u.data.length = sizeof(RtsThresh);
-            Status = copy_to_user(wrq->u.data.pointer, &RtsThresh, wrq->u.data.length);
-            DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_RTS_THRESHOLD(=%ld)\n", RtsThresh));
-            break;
-        case OID_802_11_FRAGMENTATION_THRESHOLD:
-            FragThresh = pAd->CommonCfg.FragmentThreshold;
-            if (pAd->CommonCfg.bUseZeroToDisableFragment == TRUE)
-                FragThresh = 0;
-            wrq->u.data.length = sizeof(FragThresh);
-            Status = copy_to_user(wrq->u.data.pointer, &FragThresh, wrq->u.data.length);
-            DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_FRAGMENTATION_THRESHOLD(=%ld)\n", FragThresh));
-            break;
-        case OID_802_11_POWER_MODE:
-            PowerMode = pAd->StaCfg.WindowsPowerMode;
-            wrq->u.data.length = sizeof(PowerMode);
-            Status = copy_to_user(wrq->u.data.pointer, &PowerMode, wrq->u.data.length);
-            DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_POWER_MODE(=%d)\n", PowerMode));
-            break;
-        case RT_OID_802_11_RADIO:
-            RadioState = (BOOLEAN) pAd->StaCfg.bSwRadio;
-            wrq->u.data.length = sizeof(RadioState);
-            Status = copy_to_user(wrq->u.data.pointer, &RadioState, wrq->u.data.length);
-            DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_QUERY_RADIO (=%d)\n", RadioState));
-            break;
-        case OID_802_11_INFRASTRUCTURE_MODE:
-            if (pAd->StaCfg.BssType == BSS_ADHOC)
-                BssType = Ndis802_11IBSS;
-            else if (pAd->StaCfg.BssType == BSS_INFRA)
-                BssType = Ndis802_11Infrastructure;
-            else if (pAd->StaCfg.BssType == BSS_MONITOR)
-                BssType = Ndis802_11Monitor;
-            else
-                BssType = Ndis802_11AutoUnknown;
-
-            wrq->u.data.length = sizeof(BssType);
-            Status = copy_to_user(wrq->u.data.pointer, &BssType, wrq->u.data.length);
-            DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_INFRASTRUCTURE_MODE(=%d)\n", BssType));
-            break;
-        case RT_OID_802_11_PREAMBLE:
-            PreamType = pAd->CommonCfg.TxPreamble;
-            wrq->u.data.length = sizeof(PreamType);
-            Status = copy_to_user(wrq->u.data.pointer, &PreamType, wrq->u.data.length);
-            DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_PREAMBLE(=%d)\n", PreamType));
-            break;
-        case OID_802_11_AUTHENTICATION_MODE:
-            AuthMode = pAd->StaCfg.AuthMode;
-            wrq->u.data.length = sizeof(AuthMode);
-            Status = copy_to_user(wrq->u.data.pointer, &AuthMode, wrq->u.data.length);
-            DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_AUTHENTICATION_MODE(=%d)\n", AuthMode));
-            break;
-        case OID_802_11_WEP_STATUS:
-            WepStatus = pAd->StaCfg.WepStatus;
-            wrq->u.data.length = sizeof(WepStatus);
-            Status = copy_to_user(wrq->u.data.pointer, &WepStatus, wrq->u.data.length);
-            DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_WEP_STATUS(=%d)\n", WepStatus));
-            break;
-        case OID_802_11_TX_POWER_LEVEL:
-                       wrq->u.data.length = sizeof(ULONG);
-                       Status = copy_to_user(wrq->u.data.pointer, &pAd->CommonCfg.TxPower, wrq->u.data.length);
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_TX_POWER_LEVEL %x\n",pAd->CommonCfg.TxPower));
-                       break;
-        case RT_OID_802_11_TX_POWER_LEVEL_1:
-            wrq->u.data.length = sizeof(ULONG);
-            Status = copy_to_user(wrq->u.data.pointer, &pAd->CommonCfg.TxPowerPercentage, wrq->u.data.length);
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_TX_POWER_LEVEL_1 (=%ld)\n", pAd->CommonCfg.TxPowerPercentage));
-                       break;
-        case OID_802_11_NETWORK_TYPES_SUPPORTED:
-                       if ((pAd->RfIcType      == RFIC_2850) || (pAd->RfIcType ==      RFIC_2750) || (pAd->RfIcType == RFIC_3052))
-                       {
-                               NetworkTypeList[0] = 3;                 // NumberOfItems = 3
-                               NetworkTypeList[1] = Ndis802_11DS;      // NetworkType[1] = 11b
-                               NetworkTypeList[2] = Ndis802_11OFDM24;  // NetworkType[2] = 11g
-                               NetworkTypeList[3] = Ndis802_11OFDM5;   // NetworkType[3] = 11a
-                wrq->u.data.length = 16;
-                               Status = copy_to_user(wrq->u.data.pointer, &NetworkTypeList[0], wrq->u.data.length);
-                       }
-                       else
-                       {
-                               NetworkTypeList[0] = 2;                 // NumberOfItems = 2
-                               NetworkTypeList[1] = Ndis802_11DS;      // NetworkType[1] = 11b
-                               NetworkTypeList[2] = Ndis802_11OFDM24;  // NetworkType[2] = 11g
-                           wrq->u.data.length = 12;
-                               Status = copy_to_user(wrq->u.data.pointer, &NetworkTypeList[0], wrq->u.data.length);
-                       }
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_NETWORK_TYPES_SUPPORTED\n"));
-                               break;
-           case OID_802_11_NETWORK_TYPE_IN_USE:
-            wrq->u.data.length = sizeof(ULONG);
-                       if (pAd->CommonCfg.PhyMode == PHY_11A)
-                               ulInfo = Ndis802_11OFDM5;
-                       else if ((pAd->CommonCfg.PhyMode == PHY_11BG_MIXED) || (pAd->CommonCfg.PhyMode == PHY_11G))
-                               ulInfo = Ndis802_11OFDM24;
-                       else
-                               ulInfo = Ndis802_11DS;
-            Status = copy_to_user(wrq->u.data.pointer, &ulInfo, wrq->u.data.length);
-                       break;
-        case RT_OID_802_11_QUERY_LAST_RX_RATE:
-            ulInfo = (ULONG)pAd->LastRxRate;
-            wrq->u.data.length = sizeof(ulInfo);
-                       Status = copy_to_user(wrq->u.data.pointer, &ulInfo, wrq->u.data.length);
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_QUERY_LAST_RX_RATE (=%ld)\n", ulInfo));
-                       break;
-               case RT_OID_802_11_QUERY_LAST_TX_RATE:
-                       //ulInfo = (ULONG)pAd->LastTxRate;
-                       ulInfo = (ULONG)pAd->MacTab.Content[BSSID_WCID].HTPhyMode.word;
-                       wrq->u.data.length = sizeof(ulInfo);
-                       Status = copy_to_user(wrq->u.data.pointer, &ulInfo,     wrq->u.data.length);
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_QUERY_LAST_TX_RATE (=%lx)\n", ulInfo));
-                       break;
-        case RT_OID_802_11_QUERY_EEPROM_VERSION:
-            wrq->u.data.length = sizeof(ULONG);
-            Status = copy_to_user(wrq->u.data.pointer, &pAd->EepromVersion, wrq->u.data.length);
-            break;
-        case RT_OID_802_11_QUERY_FIRMWARE_VERSION:
-            wrq->u.data.length = sizeof(ULONG);
-            Status = copy_to_user(wrq->u.data.pointer, &pAd->FirmwareVersion, wrq->u.data.length);
-                       break;
-           case RT_OID_802_11_QUERY_NOISE_LEVEL:
-                       wrq->u.data.length = sizeof(UCHAR);
-                       Status = copy_to_user(wrq->u.data.pointer, &pAd->BbpWriteLatch[66], wrq->u.data.length);
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_QUERY_NOISE_LEVEL (=%d)\n", pAd->BbpWriteLatch[66]));
-                       break;
-           case RT_OID_802_11_EXTRA_INFO:
-                       wrq->u.data.length = sizeof(ULONG);
-                       Status = copy_to_user(wrq->u.data.pointer, &pAd->ExtraInfo, wrq->u.data.length);
-               DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_EXTRA_INFO (=%ld)\n", pAd->ExtraInfo));
-               break;
-           case RT_OID_WE_VERSION_COMPILED:
-               wrq->u.data.length = sizeof(UINT);
-               we_version_compiled = WIRELESS_EXT;
-               Status = copy_to_user(wrq->u.data.pointer, &we_version_compiled, wrq->u.data.length);
-               break;
-               case RT_OID_802_11_QUERY_APSD_SETTING:
-                       apsd = (pAd->CommonCfg.bAPSDCapable | (pAd->CommonCfg.bAPSDAC_BE << 1) | (pAd->CommonCfg.bAPSDAC_BK << 2)
-                               | (pAd->CommonCfg.bAPSDAC_VI << 3)      | (pAd->CommonCfg.bAPSDAC_VO << 4)      | (pAd->CommonCfg.MaxSPLength << 5));
-
-                       wrq->u.data.length = sizeof(ULONG);
-                       Status = copy_to_user(wrq->u.data.pointer, &apsd, wrq->u.data.length);
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_QUERY_APSD_SETTING (=0x%lx,APSDCap=%d,AC_BE=%d,AC_BK=%d,AC_VI=%d,AC_VO=%d,MAXSPLen=%d)\n",
-                               apsd,pAd->CommonCfg.bAPSDCapable,pAd->CommonCfg.bAPSDAC_BE,pAd->CommonCfg.bAPSDAC_BK,pAd->CommonCfg.bAPSDAC_VI,pAd->CommonCfg.bAPSDAC_VO,pAd->CommonCfg.MaxSPLength));
-                       break;
-               case RT_OID_802_11_QUERY_APSD_PSM:
-                       wrq->u.data.length = sizeof(ULONG);
-                       Status = copy_to_user(wrq->u.data.pointer, &pAd->CommonCfg.bAPSDForcePowerSave, wrq->u.data.length);
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_QUERY_APSD_PSM (=%d)\n", pAd->CommonCfg.bAPSDForcePowerSave));
-                       break;
-               case RT_OID_802_11_QUERY_WMM:
-                       wrq->u.data.length = sizeof(BOOLEAN);
-                       Status = copy_to_user(wrq->u.data.pointer, &pAd->CommonCfg.bWmmCapable, wrq->u.data.length);
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_QUERY_WMM (=%d)\n",     pAd->CommonCfg.bWmmCapable));
-                       break;
-#ifdef WPA_SUPPLICANT_SUPPORT
-        case RT_OID_NEW_DRIVER:
-            {
-                UCHAR enabled = 1;
-               wrq->u.data.length = sizeof(UCHAR);
-               Status = copy_to_user(wrq->u.data.pointer, &enabled, wrq->u.data.length);
-                DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_NEW_DRIVER (=%d)\n", enabled));
-            }
-               break;
-        case RT_OID_WPA_SUPPLICANT_SUPPORT:
-               wrq->u.data.length = sizeof(UCHAR);
-               Status = copy_to_user(wrq->u.data.pointer, &pAd->StaCfg.WpaSupplicantUP, wrq->u.data.length);
-            DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_WPA_SUPPLICANT_SUPPORT (=%d)\n", pAd->StaCfg.WpaSupplicantUP));
-               break;
-#endif // WPA_SUPPLICANT_SUPPORT //
-
-        case RT_OID_DRIVER_DEVICE_NAME:
-            DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_DRIVER_DEVICE_NAME \n"));
-                       wrq->u.data.length = 16;
-                       if (copy_to_user(wrq->u.data.pointer, pAd->StaCfg.dev_name, wrq->u.data.length))
-                       {
-                               Status = -EFAULT;
-                       }
-            break;
-        case RT_OID_802_11_QUERY_HT_PHYMODE:
-            pHTPhyMode = (OID_SET_HT_PHYMODE *) kmalloc(sizeof(OID_SET_HT_PHYMODE), MEM_ALLOC_FLAG);
-            if (pHTPhyMode)
-            {
-                pHTPhyMode->PhyMode = pAd->CommonCfg.PhyMode;
-                       pHTPhyMode->HtMode = (UCHAR)pAd->MacTab.Content[BSSID_WCID].HTPhyMode.field.MODE;
-                       pHTPhyMode->BW = (UCHAR)pAd->MacTab.Content[BSSID_WCID].HTPhyMode.field.BW;
-                       pHTPhyMode->MCS= (UCHAR)pAd->MacTab.Content[BSSID_WCID].HTPhyMode.field.MCS;
-                       pHTPhyMode->SHORTGI= (UCHAR)pAd->MacTab.Content[BSSID_WCID].HTPhyMode.field.ShortGI;
-                       pHTPhyMode->STBC= (UCHAR)pAd->MacTab.Content[BSSID_WCID].HTPhyMode.field.STBC;
-
-                       pHTPhyMode->ExtOffset = ((pAd->CommonCfg.CentralChannel < pAd->CommonCfg.Channel) ? (EXTCHA_BELOW) : (EXTCHA_ABOVE));
-                wrq->u.data.length = sizeof(OID_SET_HT_PHYMODE);
-                if (copy_to_user(wrq->u.data.pointer, pHTPhyMode, wrq->u.data.length))
-                       {
-                               Status = -EFAULT;
-                       }
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_QUERY_HT_PHYMODE (PhyMode = %d, MCS =%d, BW = %d, STBC = %d, ExtOffset=%d)\n",
-                               pHTPhyMode->HtMode, pHTPhyMode->MCS, pHTPhyMode->BW, pHTPhyMode->STBC, pHTPhyMode->ExtOffset));
-                       DBGPRINT(RT_DEBUG_TRACE, (" MlmeUpdateTxRates (.word = %x )\n", pAd->MacTab.Content[BSSID_WCID].HTPhyMode.word));
-            }
-            else
-            {
-                DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_STA_CONFIG(kmalloc failed)\n"));
-                Status = -EFAULT;
-            }
-            break;
-        case RT_OID_802_11_COUNTRY_REGION:
-            DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_COUNTRY_REGION \n"));
-                       wrq->u.data.length = sizeof(ulInfo);
-            ulInfo = pAd->CommonCfg.CountryRegionForABand;
-            ulInfo = (ulInfo << 8)|(pAd->CommonCfg.CountryRegion);
-                       if (copy_to_user(wrq->u.data.pointer, &ulInfo, wrq->u.data.length))
-            {
-                               Status = -EFAULT;
-            }
-            break;
-        case RT_OID_802_11_QUERY_DAT_HT_PHYMODE:
-            pHTPhyMode = (OID_SET_HT_PHYMODE *) kmalloc(sizeof(OID_SET_HT_PHYMODE), MEM_ALLOC_FLAG);
-            if (pHTPhyMode)
-            {
-                pHTPhyMode->PhyMode = pAd->CommonCfg.PhyMode;
-                       pHTPhyMode->HtMode = (UCHAR)pAd->CommonCfg.RegTransmitSetting.field.HTMODE;
-                       pHTPhyMode->BW = (UCHAR)pAd->CommonCfg.RegTransmitSetting.field.BW;
-                       pHTPhyMode->MCS= (UCHAR)pAd->StaCfg.DesiredTransmitSetting.field.MCS;
-                       pHTPhyMode->SHORTGI= (UCHAR)pAd->CommonCfg.RegTransmitSetting.field.ShortGI;
-                       pHTPhyMode->STBC= (UCHAR)pAd->CommonCfg.RegTransmitSetting.field.STBC;
-
-                wrq->u.data.length = sizeof(OID_SET_HT_PHYMODE);
-                if (copy_to_user(wrq->u.data.pointer, pHTPhyMode, wrq->u.data.length))
-                       {
-                               Status = -EFAULT;
-                       }
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_QUERY_HT_PHYMODE (PhyMode = %d, MCS =%d, BW = %d, STBC = %d, ExtOffset=%d)\n",
-                               pHTPhyMode->HtMode, pHTPhyMode->MCS, pHTPhyMode->BW, pHTPhyMode->STBC, pHTPhyMode->ExtOffset));
-                       DBGPRINT(RT_DEBUG_TRACE, (" MlmeUpdateTxRates (.word = %x )\n", pAd->MacTab.Content[BSSID_WCID].HTPhyMode.word));
-            }
-            else
-            {
-                DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_STA_CONFIG(kmalloc failed)\n"));
-                Status = -EFAULT;
-            }
-            break;
-        case RT_OID_QUERY_MULTIPLE_CARD_SUPPORT:
-                       wrq->u.data.length = sizeof(UCHAR);
-            i = 0;
-#ifdef MULTIPLE_CARD_SUPPORT
-            i = 1;
-#endif // MULTIPLE_CARD_SUPPORT //
-                       if (copy_to_user(wrq->u.data.pointer, &i, wrq->u.data.length))
-            {
-                               Status = -EFAULT;
-            }
-            DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_QUERY_MULTIPLE_CARD_SUPPORT(=%d) \n", i));
-            break;
-#ifdef SNMP_SUPPORT
-               case RT_OID_802_11_MAC_ADDRESS:
-            wrq->u.data.length = MAC_ADDR_LEN;
-            Status = copy_to_user(wrq->u.data.pointer, &pAd->CurrentAddress, wrq->u.data.length);
-                       break;
-
-               case RT_OID_802_11_MANUFACTUREROUI:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_MANUFACTUREROUI \n"));
-                       wrq->u.data.length = ManufacturerOUI_LEN;
-                       Status = copy_to_user(wrq->u.data.pointer, &pAd->CurrentAddress, wrq->u.data.length);
-                       break;
-
-               case RT_OID_802_11_MANUFACTURERNAME:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_MANUFACTURERNAME \n"));
-                       wrq->u.data.length = strlen(ManufacturerNAME);
-                       Status = copy_to_user(wrq->u.data.pointer, ManufacturerNAME, wrq->u.data.length);
-                       break;
-
-               case RT_OID_802_11_RESOURCETYPEIDNAME:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_RESOURCETYPEIDNAME \n"));
-                       wrq->u.data.length = strlen(ResourceTypeIdName);
-                       Status = copy_to_user(wrq->u.data.pointer, ResourceTypeIdName, wrq->u.data.length);
-                       break;
-
-               case RT_OID_802_11_PRIVACYOPTIONIMPLEMENTED:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_PRIVACYOPTIONIMPLEMENTED \n"));
-                       ulInfo = 1; // 1 is support wep else 2 is not support.
-                       wrq->u.data.length = sizeof(ulInfo);
-                       Status = copy_to_user(wrq->u.data.pointer, &ulInfo, wrq->u.data.length);
-                       break;
-
-               case RT_OID_802_11_POWERMANAGEMENTMODE:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_POWERMANAGEMENTMODE \n"));
-                       if (pAd->StaCfg.Psm == PSMP_ACTION)
-                               ulInfo = 1; // 1 is power active else 2 is power save.
-                       else
-                               ulInfo = 2;
-
-                       wrq->u.data.length = sizeof(ulInfo);
-                       Status = copy_to_user(wrq->u.data.pointer, &ulInfo, wrq->u.data.length);
-                       break;
-
-               case OID_802_11_WEPDEFAULTKEYVALUE:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_WEPDEFAULTKEYVALUE \n"));
-                       //KeyIdxValue.KeyIdx = pAd->PortCfg.MBSSID[pAd->IoctlIF].DefaultKeyId;
-                       pKeyIdxValue = wrq->u.data.pointer;
-                       DBGPRINT(RT_DEBUG_TRACE,("KeyIdxValue.KeyIdx = %d, \n",pKeyIdxValue->KeyIdx));
-                       valueLen = pAd->SharedKey[BSS0][pAd->StaCfg.DefaultKeyId].KeyLen;
-                       NdisMoveMemory(pKeyIdxValue->Value,
-                                                  &pAd->SharedKey[BSS0][pAd->StaCfg.DefaultKeyId].Key,
-                                                  valueLen);
-                       pKeyIdxValue->Value[valueLen]='\0';
-
-                       wrq->u.data.length = sizeof(DefaultKeyIdxValue);
-
-                       Status = copy_to_user(wrq->u.data.pointer, pKeyIdxValue, wrq->u.data.length);
-                       DBGPRINT(RT_DEBUG_TRACE,("DefaultKeyId = %d, total len = %d, str len=%d, KeyValue= %02x %02x %02x %02x \n",
-                                                                               pAd->StaCfg.DefaultKeyId,
-                                                                               wrq->u.data.length,
-                                                                               pAd->SharedKey[BSS0][pAd->StaCfg.DefaultKeyId].KeyLen,
-                                                                               pAd->SharedKey[BSS0][0].Key[0],
-                                                                               pAd->SharedKey[BSS0][1].Key[0],
-                                                                               pAd->SharedKey[BSS0][2].Key[0],
-                                                                               pAd->SharedKey[BSS0][3].Key[0]));
-                       break;
-
-               case OID_802_11_WEPDEFAULTKEYID:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_WEPDEFAULTKEYID \n"));
-                       wrq->u.data.length = sizeof(UCHAR);
-                       Status = copy_to_user(wrq->u.data.pointer, &pAd->StaCfg.DefaultKeyId, wrq->u.data.length);
-                       DBGPRINT(RT_DEBUG_TRACE, ("DefaultKeyId =%d \n", pAd->StaCfg.DefaultKeyId));
-                       break;
-
-               case RT_OID_802_11_WEPKEYMAPPINGLENGTH:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_WEPKEYMAPPINGLENGTH \n"));
-                       wrq->u.data.length = sizeof(UCHAR);
-                       Status = copy_to_user(wrq->u.data.pointer,
-                                                                       &pAd->SharedKey[BSS0][pAd->StaCfg.DefaultKeyId].KeyLen,
-                                                                       wrq->u.data.length);
-                       break;
-
-               case OID_802_11_SHORTRETRYLIMIT:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_SHORTRETRYLIMIT \n"));
-                       wrq->u.data.length = sizeof(ULONG);
-                       RTMP_IO_READ32(pAd, TX_RTY_CFG, &tx_rty_cfg.word);
-                       ShortRetryLimit = tx_rty_cfg.field.ShortRtyLimit;
-                       DBGPRINT(RT_DEBUG_TRACE, ("ShortRetryLimit =%ld,  tx_rty_cfg.field.ShortRetryLimit=%d\n", ShortRetryLimit, tx_rty_cfg.field.ShortRtyLimit));
-                       Status = copy_to_user(wrq->u.data.pointer, &ShortRetryLimit, wrq->u.data.length);
-                       break;
-
-               case OID_802_11_LONGRETRYLIMIT:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_LONGRETRYLIMIT \n"));
-                       wrq->u.data.length = sizeof(ULONG);
-                       RTMP_IO_READ32(pAd, TX_RTY_CFG, &tx_rty_cfg.word);
-                       LongRetryLimit = tx_rty_cfg.field.LongRtyLimit;
-                       DBGPRINT(RT_DEBUG_TRACE, ("LongRetryLimit =%ld,  tx_rty_cfg.field.LongRtyLimit=%d\n", LongRetryLimit, tx_rty_cfg.field.LongRtyLimit));
-                       Status = copy_to_user(wrq->u.data.pointer, &LongRetryLimit, wrq->u.data.length);
-                       break;
-
-               case RT_OID_802_11_PRODUCTID:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_PRODUCTID \n"));
-
-#ifdef RTMP_MAC_PCI
-                       {
-
-                               USHORT  device_id;
-                               if (((POS_COOKIE)pAd->OS_Cookie)->pci_dev != NULL)
-                               pci_read_config_word(((POS_COOKIE)pAd->OS_Cookie)->pci_dev, PCI_DEVICE_ID, &device_id);
-                               else
-                                       DBGPRINT(RT_DEBUG_TRACE, (" pci_dev = NULL\n"));
-                               sprintf((PSTRING)tmp, "%04x %04x\n", NIC_PCI_VENDOR_ID, device_id);
-                       }
-#endif // RTMP_MAC_PCI //
-                       wrq->u.data.length = strlen((PSTRING)tmp);
-                       Status = copy_to_user(wrq->u.data.pointer, tmp, wrq->u.data.length);
-                       break;
-
-               case RT_OID_802_11_MANUFACTUREID:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_MANUFACTUREID \n"));
-                       wrq->u.data.length = strlen(ManufacturerNAME);
-                       Status = copy_to_user(wrq->u.data.pointer, ManufacturerNAME, wrq->u.data.length);
-                       break;
-
-               case OID_802_11_CURRENTCHANNEL:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_CURRENTCHANNEL \n"));
-                       wrq->u.data.length = sizeof(UCHAR);
-                       DBGPRINT(RT_DEBUG_TRACE, ("sizeof UCHAR=%d, channel=%d \n", sizeof(UCHAR), pAd->CommonCfg.Channel));
-                       Status = copy_to_user(wrq->u.data.pointer, &pAd->CommonCfg.Channel, wrq->u.data.length);
-                       DBGPRINT(RT_DEBUG_TRACE, ("Status=%d\n", Status));
-                       break;
-#endif //SNMP_SUPPORT
-
-               case OID_802_11_BUILD_CHANNEL_EX:
-                       {
-                               UCHAR value;
-                               DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_BUILD_CHANNEL_EX \n"));
-                               wrq->u.data.length = sizeof(UCHAR);
-#ifdef EXT_BUILD_CHANNEL_LIST
-                               DBGPRINT(RT_DEBUG_TRACE, ("Support EXT_BUILD_CHANNEL_LIST.\n"));
-                               value = 1;
-#else
-                               DBGPRINT(RT_DEBUG_TRACE, ("Doesn't support EXT_BUILD_CHANNEL_LIST.\n"));
-                               value = 0;
-#endif // EXT_BUILD_CHANNEL_LIST //
-                               Status = copy_to_user(wrq->u.data.pointer, &value, 1);
-                               DBGPRINT(RT_DEBUG_TRACE, ("Status=%d\n", Status));
-                       }
-                       break;
-
-               case OID_802_11_GET_CH_LIST:
-                       {
-                               PRT_CHANNEL_LIST_INFO pChListBuf;
-
-                               DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_GET_CH_LIST \n"));
-                               if (pAd->ChannelListNum == 0)
-                               {
-                                       wrq->u.data.length = 0;
-                                       break;
-                               }
-
-                               pChListBuf = (RT_CHANNEL_LIST_INFO *) kmalloc(sizeof(RT_CHANNEL_LIST_INFO), MEM_ALLOC_FLAG);
-                               if (pChListBuf == NULL)
-                               {
-                                       wrq->u.data.length = 0;
-                                       break;
-                               }
-
-                               pChListBuf->ChannelListNum = pAd->ChannelListNum;
-                               for (i = 0; i < pChListBuf->ChannelListNum; i++)
-                                       pChListBuf->ChannelList[i] = pAd->ChannelList[i].Channel;
-
-                               wrq->u.data.length = sizeof(RT_CHANNEL_LIST_INFO);
-                               Status = copy_to_user(wrq->u.data.pointer, pChListBuf, sizeof(RT_CHANNEL_LIST_INFO));
-                               DBGPRINT(RT_DEBUG_TRACE, ("Status=%d\n", Status));
-
-                               if (pChListBuf)
-                                       kfree(pChListBuf);
-                       }
-                       break;
-
-               case OID_802_11_GET_COUNTRY_CODE:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_GET_COUNTRY_CODE \n"));
-                       wrq->u.data.length = 2;
-                       Status = copy_to_user(wrq->u.data.pointer, &pAd->CommonCfg.CountryCode, 2);
-                       DBGPRINT(RT_DEBUG_TRACE, ("Status=%d\n", Status));
-                       break;
-
-               case OID_802_11_GET_CHANNEL_GEOGRAPHY:
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_GET_CHANNEL_GEOGRAPHY \n"));
-                       wrq->u.data.length = 1;
-                       Status = copy_to_user(wrq->u.data.pointer, &pAd->CommonCfg.Geography, 1);
-                       DBGPRINT(RT_DEBUG_TRACE, ("Status=%d\n", Status));
-                       break;
-
-
-#ifdef QOS_DLS_SUPPORT
-               case RT_OID_802_11_QUERY_DLS:
-                       wrq->u.data.length = sizeof(BOOLEAN);
-                       Status = copy_to_user(wrq->u.data.pointer, &pAd->CommonCfg.bDLSCapable, wrq->u.data.length);
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_QUERY_DLS(=%d)\n", pAd->CommonCfg.bDLSCapable));
-                       break;
-
-               case RT_OID_802_11_QUERY_DLS_PARAM:
-                       {
-                               PRT_802_11_DLS_INFO     pDlsInfo = kmalloc(sizeof(RT_802_11_DLS_INFO), GFP_ATOMIC);
-                               if (pDlsInfo == NULL)
-                                       break;
-
-                               for (i=0; i<MAX_NUM_OF_DLS_ENTRY; i++)
-                               {
-                                       RTMPMoveMemory(&pDlsInfo->Entry[i], &pAd->StaCfg.DLSEntry[i], sizeof(RT_802_11_DLS_UI));
-                               }
-
-                               pDlsInfo->num = MAX_NUM_OF_DLS_ENTRY;
-                               wrq->u.data.length = sizeof(RT_802_11_DLS_INFO);
-                               Status = copy_to_user(wrq->u.data.pointer, pDlsInfo, wrq->u.data.length);
-                               DBGPRINT(RT_DEBUG_TRACE, ("Query::RT_OID_802_11_QUERY_DLS_PARAM\n"));
-
-                               if (pDlsInfo)
-                                       kfree(pDlsInfo);
-                       }
-                       break;
-#endif // QOS_DLS_SUPPORT //
-
-               case OID_802_11_SET_PSPXLINK_MODE:
-                       wrq->u.data.length = sizeof(BOOLEAN);
-            Status = copy_to_user(wrq->u.data.pointer, &pAd->CommonCfg.PSPXlink, wrq->u.data.length);
-                       DBGPRINT(RT_DEBUG_TRACE, ("Query::OID_802_11_SET_PSPXLINK_MODE(=%d)\n", pAd->CommonCfg.PSPXlink));
-                       break;
-
-
-        default:
-            DBGPRINT(RT_DEBUG_TRACE, ("Query::unknown IOCTL's subcmd = 0x%08x\n", cmd));
-            Status = -EOPNOTSUPP;
-            break;
-    }
-    return Status;
-}
-
-INT rt28xx_sta_ioctl(
-       IN      struct net_device       *net_dev,
-       IN      OUT     struct ifreq    *rq,
-       IN      INT                                     cmd)
-{
-       POS_COOKIE                      pObj;
-       RTMP_ADAPTER        *pAd = NULL;
-       struct iwreq        *wrq = (struct iwreq *) rq;
-       BOOLEAN                         StateMachineTouched = FALSE;
-       INT                                     Status = NDIS_STATUS_SUCCESS;
-       USHORT                          subcmd;
-
-
-       pAd = RTMP_OS_NETDEV_GET_PRIV(net_dev);
-       if (pAd == NULL)
-       {
-               /* if 1st open fail, pAd will be free;
-                  So the net_dev->priv will be NULL in 2rd open */
-               return -ENETDOWN;
-       }
-       pObj = (POS_COOKIE) pAd->OS_Cookie;
-
-    //check if the interface is down
-    if(!RTMP_TEST_FLAG(pAd, fRTMP_ADAPTER_INTERRUPT_IN_USE))
-    {
-#ifdef CONFIG_APSTA_MIXED_SUPPORT
-           if (wrq->u.data.pointer == NULL)
-           {
-                   return Status;
-           }
-
-           if (strstr(wrq->u.data.pointer, "OpMode") == NULL)
-#endif // CONFIG_APSTA_MIXED_SUPPORT //
-               {
-            DBGPRINT(RT_DEBUG_TRACE, ("INFO::Network is down!\n"));
-                   return -ENETDOWN;
-        }
-    }
-
-       {       // determine this ioctl command is comming from which interface.
-               pObj->ioctl_if_type = INT_MAIN;
-               pObj->ioctl_if = MAIN_MBSSID;
-       }
-
-       switch(cmd)
-       {
-#ifdef RALINK_ATE
-#ifdef RALINK_28xx_QA
-               case RTPRIV_IOCTL_ATE:
-                       {
-                               RtmpDoAte(pAd, wrq);
-                       }
-                       break;
-#endif // RALINK_28xx_QA //
-#endif // RALINK_ATE //
-        case SIOCGIFHWADDR:
-                       DBGPRINT(RT_DEBUG_TRACE, ("IOCTL::SIOCGIFHWADDR\n"));
-                       memcpy(wrq->u.name, pAd->CurrentAddress, ETH_ALEN);
-                       break;
-               case SIOCGIWNAME:
-        {
-               char *name=&wrq->u.name[0];
-               rt_ioctl_giwname(net_dev, NULL, name, NULL);
-            break;
-               }
-               case SIOCGIWESSID:  //Get ESSID
-        {
-               struct iw_point *essid=&wrq->u.essid;
-               rt_ioctl_giwessid(net_dev, NULL, essid, essid->pointer);
-            break;
-               }
-               case SIOCSIWESSID:  //Set ESSID
-               {
-               struct iw_point *essid=&wrq->u.essid;
-               rt_ioctl_siwessid(net_dev, NULL, essid, essid->pointer);
-            break;
-               }
-               case SIOCSIWNWID:   // set network id (the cell)
-               case SIOCGIWNWID:   // get network id
-                       Status = -EOPNOTSUPP;
-                       break;
-               case SIOCSIWFREQ:   //set channel/frequency (Hz)
-               {
-               struct iw_freq *freq=&wrq->u.freq;
-               rt_ioctl_siwfreq(net_dev, NULL, freq, NULL);
-                       break;
-               }
-               case SIOCGIWFREQ:   // get channel/frequency (Hz)
-               {
-               struct iw_freq *freq=&wrq->u.freq;
-               rt_ioctl_giwfreq(net_dev, NULL, freq, NULL);
-                       break;
-               }
-               case SIOCSIWNICKN: //set node name/nickname
-               {
-               //struct iw_point *data=&wrq->u.data;
-               //rt_ioctl_siwnickn(net_dev, NULL, data, NULL);
-                       break;
-                       }
-               case SIOCGIWNICKN: //get node name/nickname
-        {
-                       struct iw_point *erq = NULL;
-               erq = &wrq->u.data;
-            erq->length = strlen((PSTRING) pAd->nickname);
-            Status = copy_to_user(erq->pointer, pAd->nickname, erq->length);
-                       break;
-               }
-               case SIOCGIWRATE:   //get default bit rate (bps)
-                   rt_ioctl_giwrate(net_dev, NULL, &wrq->u, NULL);
+               }
+               case SIOCGIWRATE:   //get default bit rate (bps)
+                   rt_ioctl_giwrate(net_dev, NULL, &wrq->u, NULL);
             break;
            case SIOCSIWRATE:  //set default bit rate (bps)
                rt_ioctl_siwrate(net_dev, NULL, &wrq->u, NULL);
@@ -5745,15 +3301,9 @@ INT rt28xx_sta_ioctl(
                case SIOCGIWRANGE:      //Get range of parameters
                case SIOCGIWRETRY:      //get retry limits and lifetime
                case SIOCSIWRETRY:      //set retry limits and lifetime
-                       Status = -EOPNOTSUPP;
-                       break;
                case RT_PRIV_IOCTL:
-        case RT_PRIV_IOCTL_EXT:
-                       subcmd = wrq->u.data.flags;
-                       if( subcmd & OID_GET_SET_TOGGLE)
-                               Status = RTMPSetInformation(pAd, rq, subcmd);
-                       else
-                               Status = RTMPQueryInformation(pAd, rq, subcmd);
+               case RT_PRIV_IOCTL_EXT:
+                       Status = -EOPNOTSUPP;
                        break;
                case SIOCGIWPRIV:
                        if (wrq->u.data.pointer)
@@ -5773,20 +3323,6 @@ INT rt28xx_sta_ioctl(
                case RTPRIV_IOCTL_GSITESURVEY:
                        RTMPIoctlGetSiteSurvey(pAd, wrq);
                    break;
-#ifdef DBG
-               case RTPRIV_IOCTL_MAC:
-                       RTMPIoctlMAC(pAd, wrq);
-                       break;
-               case RTPRIV_IOCTL_E2P:
-                       RTMPIoctlE2PROM(pAd, wrq);
-                       break;
-#ifdef RTMP_RF_RW_SUPPORT
-               case RTPRIV_IOCTL_RF:
-                       RTMPIoctlRF(pAd, wrq);
-                       break;
-#endif // RTMP_RF_RW_SUPPORT //
-#endif // DBG //
-
         case SIOCETHTOOL:
                 break;
                default:
@@ -6700,622 +4236,6 @@ INT Set_Wpa_Support(
 }
 #endif // WPA_SUPPLICANT_SUPPORT //
 
-#ifdef DBG
-/*
-    ==========================================================================
-    Description:
-        Read / Write MAC
-    Arguments:
-        pAdapter                    Pointer to our adapter
-        wrq                         Pointer to the ioctl argument
-
-    Return Value:
-        None
-
-    Note:
-        Usage:
-               1.) iwpriv ra0 mac 0        ==> read MAC where Addr=0x0
-               2.) iwpriv ra0 mac 0=12     ==> write MAC where Addr=0x0, value=12
-    ==========================================================================
-*/
-VOID RTMPIoctlMAC(
-       IN      PRTMP_ADAPTER   pAdapter,
-       IN      struct iwreq    *wrq)
-{
-       PSTRING                         this_char;
-       PSTRING                         value;
-       INT                                     j = 0, k = 0;
-       STRING                          msg[1024];
-       STRING                          arg[255];
-       ULONG                           macAddr = 0;
-       UCHAR                           temp[16];
-       STRING                          temp2[16];
-       UINT32                          macValue = 0;
-       INT                                     Status;
-       BOOLEAN                         bIsPrintAllMAC = FALSE;
-
-
-       memset(msg, 0x00, 1024);
-       if (wrq->u.data.length > 1) //No parameters.
-       {
-           Status = copy_from_user(arg, wrq->u.data.pointer, (wrq->u.data.length > 255) ? 255 : wrq->u.data.length);
-               sprintf(msg, "\n");
-
-               //Parsing Read or Write
-           this_char = arg;
-               if (!*this_char)
-                       goto next;
-
-               if ((value = rtstrchr(this_char, '=')) != NULL)
-                       *value++ = 0;
-
-               if (!value || !*value)
-               { //Read
-                       // Sanity check
-                       if(strlen(this_char) > 4)
-                               goto next;
-
-                       j = strlen(this_char);
-                       while(j-- > 0)
-                       {
-                               if(this_char[j] > 'f' || this_char[j] < '0')
-                                       return;
-                       }
-
-                       // Mac Addr
-                       k = j = strlen(this_char);
-                       while(j-- > 0)
-                       {
-                               this_char[4-k+j] = this_char[j];
-                       }
-
-                       while(k < 4)
-                               this_char[3-k++]='0';
-                       this_char[4]='\0';
-
-                       if(strlen(this_char) == 4)
-                       {
-                               AtoH(this_char, temp, 2);
-                               macAddr = *temp*256 + temp[1];
-                               if (macAddr < 0xFFFF)
-                               {
-                                       RTMP_IO_READ32(pAdapter, macAddr, &macValue);
-                                       DBGPRINT(RT_DEBUG_TRACE, ("MacAddr=%lx, MacValue=%x\n", macAddr, macValue));
-                                       sprintf(msg+strlen(msg), "[0x%08lX]:%08X  ", macAddr , macValue);
-                               }
-                               else
-                               {//Invalid parametes, so default printk all mac
-                                       bIsPrintAllMAC = TRUE;
-                                       goto next;
-                               }
-                       }
-               }
-               else
-               { //Write
-                       memcpy(&temp2, value, strlen(value));
-                       temp2[strlen(value)] = '\0';
-
-                       // Sanity check
-                       if((strlen(this_char) > 4) || strlen(temp2) > 8)
-                               goto next;
-
-                       j = strlen(this_char);
-                       while(j-- > 0)
-                       {
-                               if(this_char[j] > 'f' || this_char[j] < '0')
-                                       return;
-                       }
-
-                       j = strlen(temp2);
-                       while(j-- > 0)
-                       {
-                               if(temp2[j] > 'f' || temp2[j] < '0')
-                                       return;
-                       }
-
-                       //MAC Addr
-                       k = j = strlen(this_char);
-                       while(j-- > 0)
-                       {
-                               this_char[4-k+j] = this_char[j];
-                       }
-
-                       while(k < 4)
-                               this_char[3-k++]='0';
-                       this_char[4]='\0';
-
-                       //MAC value
-                       k = j = strlen(temp2);
-                       while(j-- > 0)
-                       {
-                               temp2[8-k+j] = temp2[j];
-                       }
-
-                       while(k < 8)
-                               temp2[7-k++]='0';
-                       temp2[8]='\0';
-
-                       {
-                               AtoH(this_char, temp, 2);
-                               macAddr = *temp*256 + temp[1];
-
-                               AtoH(temp2, temp, 4);
-                               macValue = *temp*256*256*256 + temp[1]*256*256 + temp[2]*256 + temp[3];
-
-                               // debug mode
-                               if (macAddr == (HW_DEBUG_SETTING_BASE + 4))
-                               {
-                                       // 0x2bf4: byte0 non-zero: enable R17 tuning, 0: disable R17 tuning
-                    if (macValue & 0x000000ff)
-                    {
-                        pAdapter->BbpTuning.bEnable = TRUE;
-                        DBGPRINT(RT_DEBUG_TRACE,("turn on R17 tuning\n"));
-                    }
-                    else
-                    {
-                        UCHAR R66;
-                        pAdapter->BbpTuning.bEnable = FALSE;
-                        R66 = 0x26 + GET_LNA_GAIN(pAdapter);
-#ifdef RALINK_ATE
-                                               if (ATE_ON(pAdapter))
-                                               {
-                                                       ATE_BBP_IO_WRITE8_BY_REG_ID(pAdapter, BBP_R66, (0x26 + GET_LNA_GAIN(pAdapter)));
-                                               }
-                                               else
-#endif // RALINK_ATE //
-
-                                                       RTMP_BBP_IO_WRITE8_BY_REG_ID(pAdapter, BBP_R66, (0x26 + GET_LNA_GAIN(pAdapter)));
-                        DBGPRINT(RT_DEBUG_TRACE,("turn off R17 tuning, restore to 0x%02x\n", R66));
-                    }
-                                       return;
-                               }
-
-                               DBGPRINT(RT_DEBUG_TRACE, ("MacAddr=%02lx, MacValue=0x%x\n", macAddr, macValue));
-
-                               RTMP_IO_WRITE32(pAdapter, macAddr, macValue);
-                               sprintf(msg+strlen(msg), "[0x%08lX]:%08X  ", macAddr, macValue);
-                       }
-               }
-       }
-       else
-               bIsPrintAllMAC = TRUE;
-next:
-       if (bIsPrintAllMAC)
-       {
-               struct file             *file_w;
-               PSTRING                 fileName = "MacDump.txt";
-               mm_segment_t    orig_fs;
-
-               orig_fs = get_fs();
-               set_fs(KERNEL_DS);
-
-               // open file
-               file_w = filp_open(fileName, O_WRONLY|O_CREAT, 0);
-               if (IS_ERR(file_w))
-               {
-                       DBGPRINT(RT_DEBUG_TRACE, ("-->2) %s: Error %ld opening %s\n", __FUNCTION__, -PTR_ERR(file_w), fileName));
-               }
-               else
-               {
-                       if (file_w->f_op && file_w->f_op->write)
-                       {
-                               file_w->f_pos = 0;
-                               macAddr = 0x1000;
-
-                               while (macAddr <= 0x1800)
-                               {
-                                       RTMP_IO_READ32(pAdapter, macAddr, &macValue);
-                                       sprintf(msg, "%08lx = %08X\n", macAddr, macValue);
-
-                                       // write data to file
-                                       file_w->f_op->write(file_w, msg, strlen(msg), &file_w->f_pos);
-
-                                       printk("%s", msg);
-                                       macAddr += 4;
-                               }
-                               sprintf(msg, "\nDump all MAC values to %s\n", fileName);
-                       }
-                       filp_close(file_w, NULL);
-               }
-               set_fs(orig_fs);
-       }
-       if(strlen(msg) == 1)
-               sprintf(msg+strlen(msg), "===>Error command format!");
-
-       // Copy the information into the user buffer
-       wrq->u.data.length = strlen(msg);
-       Status = copy_to_user(wrq->u.data.pointer, msg, wrq->u.data.length);
-
-       DBGPRINT(RT_DEBUG_TRACE, ("<==RTMPIoctlMAC\n\n"));
-}
-
-/*
-    ==========================================================================
-    Description:
-        Read / Write E2PROM
-    Arguments:
-        pAdapter                    Pointer to our adapter
-        wrq                         Pointer to the ioctl argument
-
-    Return Value:
-        None
-
-    Note:
-        Usage:
-               1.) iwpriv ra0 e2p 0            ==> read E2PROM where Addr=0x0
-               2.) iwpriv ra0 e2p 0=1234    ==> write E2PROM where Addr=0x0, value=1234
-    ==========================================================================
-*/
-VOID RTMPIoctlE2PROM(
-       IN      PRTMP_ADAPTER   pAdapter,
-       IN      struct iwreq    *wrq)
-{
-       PSTRING                         this_char;
-       PSTRING                         value;
-       INT                                     j = 0, k = 0;
-       STRING                          msg[1024];
-       STRING                          arg[255];
-       USHORT                          eepAddr = 0;
-       UCHAR                           temp[16];
-       STRING                          temp2[16];
-       USHORT                          eepValue;
-       int                                     Status;
-       BOOLEAN                         bIsPrintAllE2P = FALSE;
-
-
-       memset(msg, 0x00, 1024);
-       if (wrq->u.data.length > 1) //No parameters.
-       {
-           Status = copy_from_user(arg, wrq->u.data.pointer, (wrq->u.data.length > 255) ? 255 : wrq->u.data.length);
-               sprintf(msg, "\n");
-
-           //Parsing Read or Write
-               this_char = arg;
-
-
-               if (!*this_char)
-                       goto next;
-
-               if ((value = rtstrchr(this_char, '=')) != NULL)
-                       *value++ = 0;
-
-               if (!value || !*value)
-               { //Read
-
-                       // Sanity check
-                       if(strlen(this_char) > 4)
-                               goto next;
-
-                       j = strlen(this_char);
-                       while(j-- > 0)
-                       {
-                               if(this_char[j] > 'f' || this_char[j] < '0')
-                                       return;
-                       }
-
-                       // E2PROM addr
-                       k = j = strlen(this_char);
-                       while(j-- > 0)
-                       {
-                               this_char[4-k+j] = this_char[j];
-                       }
-
-                       while(k < 4)
-                               this_char[3-k++]='0';
-                       this_char[4]='\0';
-
-                       if(strlen(this_char) == 4)
-                       {
-                               AtoH(this_char, temp, 2);
-                               eepAddr = *temp*256 + temp[1];
-                               if (eepAddr < 0xFFFF)
-                               {
-                                       RT28xx_EEPROM_READ16(pAdapter, eepAddr, eepValue);
-                                       sprintf(msg+strlen(msg), "[0x%04X]:0x%04X  ", eepAddr , eepValue);
-                               }
-                               else
-                               {//Invalid parametes, so default printk all bbp
-                                       bIsPrintAllE2P = TRUE;
-                                       goto next;
-                               }
-                       }
-               }
-               else
-               { //Write
-                       memcpy(&temp2, value, strlen(value));
-                       temp2[strlen(value)] = '\0';
-
-                       // Sanity check
-                       if((strlen(this_char) > 4) || strlen(temp2) > 8)
-                               goto next;
-
-                       j = strlen(this_char);
-                       while(j-- > 0)
-                       {
-                               if(this_char[j] > 'f' || this_char[j] < '0')
-                                       return;
-                       }
-                       j = strlen(temp2);
-                       while(j-- > 0)
-                       {
-                               if(temp2[j] > 'f' || temp2[j] < '0')
-                                       return;
-                       }
-
-                       //MAC Addr
-                       k = j = strlen(this_char);
-                       while(j-- > 0)
-                       {
-                               this_char[4-k+j] = this_char[j];
-                       }
-
-                       while(k < 4)
-                               this_char[3-k++]='0';
-                       this_char[4]='\0';
-
-                       //MAC value
-                       k = j = strlen(temp2);
-                       while(j-- > 0)
-                       {
-                               temp2[4-k+j] = temp2[j];
-                       }
-
-                       while(k < 4)
-                               temp2[3-k++]='0';
-                       temp2[4]='\0';
-
-                       AtoH(this_char, temp, 2);
-                       eepAddr = *temp*256 + temp[1];
-
-                       AtoH(temp2, temp, 2);
-                       eepValue = *temp*256 + temp[1];
-
-                       RT28xx_EEPROM_WRITE16(pAdapter, eepAddr, eepValue);
-                       sprintf(msg+strlen(msg), "[0x%02X]:%02X  ", eepAddr, eepValue);
-               }
-       }
-       else
-               bIsPrintAllE2P = TRUE;
-next:
-       if (bIsPrintAllE2P)
-       {
-               struct file             *file_w;
-               PSTRING                 fileName = "EEPROMDump.txt";
-               mm_segment_t    orig_fs;
-
-               orig_fs = get_fs();
-               set_fs(KERNEL_DS);
-
-               // open file
-               file_w = filp_open(fileName, O_WRONLY|O_CREAT, 0);
-               if (IS_ERR(file_w))
-               {
-                       DBGPRINT(RT_DEBUG_TRACE, ("-->2) %s: Error %ld opening %s\n", __FUNCTION__, -PTR_ERR(file_w), fileName));
-               }
-               else
-               {
-                       if (file_w->f_op && file_w->f_op->write)
-                       {
-                               file_w->f_pos = 0;
-                               eepAddr = 0x00;
-
-                               while (eepAddr <= 0xFE)
-                               {
-                                       RT28xx_EEPROM_READ16(pAdapter, eepAddr, eepValue);
-                                       sprintf(msg, "%08x = %04x\n", eepAddr , eepValue);
-
-                                       // write data to file
-                                       file_w->f_op->write(file_w, msg, strlen(msg), &file_w->f_pos);
-
-                                       printk("%s", msg);
-                                       eepAddr += 2;
-                               }
-                               sprintf(msg, "\nDump all EEPROM values to %s\n", fileName);
-                       }
-                       filp_close(file_w, NULL);
-               }
-               set_fs(orig_fs);
-       }
-       if(strlen(msg) == 1)
-               sprintf(msg+strlen(msg), "===>Error command format!");
-
-
-       // Copy the information into the user buffer
-       wrq->u.data.length = strlen(msg);
-       Status = copy_to_user(wrq->u.data.pointer, msg, wrq->u.data.length);
-
-       DBGPRINT(RT_DEBUG_TRACE, ("<==RTMPIoctlE2PROM\n"));
-}
-
-
-#ifdef RT30xx
-/*
-    ==========================================================================
-    Description:
-        Read / Write RF register
-Arguments:
-    pAdapter                    Pointer to our adapter
-    wrq                         Pointer to the ioctl argument
-
-    Return Value:
-        None
-
-    Note:
-        Usage:
-               1.) iwpriv ra0 rf                ==> read all RF registers
-               2.) iwpriv ra0 rf 1              ==> read RF where RegID=1
-               3.) iwpriv ra0 rf 1=10              ==> write RF R1=0x10
-    ==========================================================================
-*/
-VOID RTMPIoctlRF(
-       IN      PRTMP_ADAPTER   pAdapter,
-       IN      struct iwreq    *wrq)
-{
-       CHAR                            *this_char;
-       CHAR                            *value;
-       UCHAR                           regRF = 0;
-       STRING                          msg[2048];
-       CHAR                            arg[255];
-       INT                                     rfId;
-       LONG                            rfValue;
-       int                                     Status;
-       BOOLEAN                         bIsPrintAllRF = FALSE;
-
-
-       memset(msg, 0x00, 2048);
-       if (wrq->u.data.length > 1) //No parameters.
-       {
-           Status = copy_from_user(arg, wrq->u.data.pointer, (wrq->u.data.length > 255) ? 255 : wrq->u.data.length);
-               sprintf(msg, "\n");
-
-           //Parsing Read or Write
-               this_char = arg;
-               if (!*this_char)
-                       goto next;
-
-               if ((value = strchr(this_char, '=')) != NULL)
-                       *value++ = 0;
-
-               if (!value || !*value)
-               { //Read
-                       if (sscanf((PSTRING) this_char, "%d", &(rfId)) == 1)
-                       {
-                               if (rfId <= 31)
-                               {
-#ifdef RALINK_ATE
-                                       /*
-                                               In RT2860 ATE mode, we do not load 8051 firmware.
-                           We must access RF directly.
-                                               For RT2870 ATE mode, ATE_RF_IO_WRITE8(/READ8)_BY_REG_ID are redefined.
-                                       */
-                                       if (ATE_ON(pAdapter))
-                                       {
-                                               ATE_RF_IO_READ8_BY_REG_ID(pAdapter, rfId, &regRF);
-                                       }
-                                       else
-#endif // RALINK_ATE //
-                                       // according to Andy, Gary, David require.
-                                       // the command rf shall read rf register directly for dubug.
-                                       // BBP_IO_READ8_BY_REG_ID(pAdapter, bbpId, &regBBP);
-                                       RT30xxReadRFRegister(pAdapter, rfId, &regRF);
-
-                                       sprintf(msg+strlen(msg), "R%02d[0x%02x]:%02X  ", rfId, rfId, regRF);
-                               }
-                               else
-                               {//Invalid parametes, so default printk all RF
-                                       bIsPrintAllRF = TRUE;
-                                       goto next;
-                               }
-                       }
-                       else
-                       { //Invalid parametes, so default printk all RF
-                               bIsPrintAllRF = TRUE;
-                               goto next;
-                       }
-               }
-               else
-               { //Write
-                       if ((sscanf((PSTRING) this_char, "%d", &(rfId)) == 1) && (sscanf((PSTRING) value, "%lx", &(rfValue)) == 1))
-                       {
-                               if (rfId <= 31)
-                               {
-#ifdef RALINK_ATE
-                                               /*
-                                                       In RT2860 ATE mode, we do not load 8051 firmware.
-                                   We must access RF directly.
-                                                       For RT2870 ATE mode, ATE_RF_IO_WRITE8(/READ8)_BY_REG_ID are redefined.
-                                               */
-                                               if (ATE_ON(pAdapter))
-                                               {
-                                                       ATE_RF_IO_READ8_BY_REG_ID(pAdapter, rfId, &regRF);
-                                                       ATE_RF_IO_WRITE8_BY_REG_ID(pAdapter, (UCHAR)rfId,(UCHAR) rfValue);
-                                                       //Read it back for showing
-                                                       ATE_RF_IO_READ8_BY_REG_ID(pAdapter, rfId, &regRF);
-                                                       sprintf(msg+strlen(msg), "R%02d[0x%02X]:%02X\n", rfId, rfId, regRF);
-                                               }
-                                               else
-#endif // RALINK_ATE //
-                                               {
-                                                       // according to Andy, Gary, David require.
-                                                       // the command RF shall read/write RF register directly for dubug.
-                                                       //BBP_IO_READ8_BY_REG_ID(pAdapter, bbpId, &regBBP);
-                                                       //BBP_IO_WRITE8_BY_REG_ID(pAdapter, (UCHAR)bbpId,(UCHAR) bbpValue);
-                                                       RT30xxReadRFRegister(pAdapter, rfId, &regRF);
-                                                       RT30xxWriteRFRegister(pAdapter, (UCHAR)rfId,(UCHAR) rfValue);
-                                                       //Read it back for showing
-                                                       //BBP_IO_READ8_BY_REG_ID(pAdapter, bbpId, &regBBP);
-                                                       RT30xxReadRFRegister(pAdapter, rfId, &regRF);
-                                       sprintf(msg+strlen(msg), "R%02d[0x%02X]:%02X\n", rfId, rfId, regRF);
-                                               }
-                               }
-                               else
-                               {//Invalid parametes, so default printk all RF
-                                       bIsPrintAllRF = TRUE;
-                               }
-                       }
-                       else
-                       { //Invalid parametes, so default printk all RF
-                               bIsPrintAllRF = TRUE;
-                       }
-               }
-       }
-       else
-               bIsPrintAllRF = TRUE;
-next:
-       if (bIsPrintAllRF)
-       {
-               memset(msg, 0x00, 2048);
-               sprintf(msg, "\n");
-               for (rfId = 0; rfId <= 31; rfId++)
-               {
-#ifdef RALINK_ATE
-                       /*
-                               In RT2860 ATE mode, we do not load 8051 firmware.
-                We must access RF directly.
-                               For RT2870 ATE mode, ATE_RF_IO_WRITE8(/READ8)_BY_REG_ID are redefined.
-                       */
-                       if (ATE_ON(pAdapter))
-                       {
-                               ATE_RF_IO_READ8_BY_REG_ID(pAdapter, rfId, &regRF);
-                       }
-                       else
-#endif // RALINK_ATE //
-
-                       // according to Andy, Gary, David require.
-                       // the command RF shall read/write RF register directly for dubug.
-                       RT30xxReadRFRegister(pAdapter, rfId, &regRF);
-                       sprintf(msg+strlen(msg), "%03d = %02X\n", rfId, regRF);
-               }
-               // Copy the information into the user buffer
-               DBGPRINT(RT_DEBUG_TRACE, ("strlen(msg)=%d\n", (UINT32)strlen(msg)));
-               wrq->u.data.length = strlen(msg);
-               if (copy_to_user(wrq->u.data.pointer, msg, wrq->u.data.length))
-               {
-                       DBGPRINT(RT_DEBUG_TRACE, ("%s: copy_to_user() fail\n", __FUNCTION__));
-               }
-       }
-       else
-       {
-               if(strlen(msg) == 1)
-                       sprintf(msg+strlen(msg), "===>Error command format!");
-
-               DBGPRINT(RT_DEBUG_TRACE, ("copy to user [msg=%s]\n", msg));
-               // Copy the information into the user buffer
-               DBGPRINT(RT_DEBUG_TRACE, ("strlen(msg) =%d\n", (UINT32)strlen(msg)));
-
-               // Copy the information into the user buffer
-               wrq->u.data.length = strlen(msg);
-               Status = copy_to_user(wrq->u.data.pointer, msg, wrq->u.data.length);
-       }
-
-       DBGPRINT(RT_DEBUG_TRACE, ("<==RTMPIoctlRF\n\n"));
-}
-#endif // RT30xx //
-#endif // DBG //
-
-
-
-
 INT Set_TGnWifiTest_Proc(
     IN  PRTMP_ADAPTER   pAd,
     IN  PSTRING          arg)