|
@@ -113,7 +113,7 @@ static int msglevel =MSG_LEVEL_INFO;
|
|
|
|
|
|
struct iw_statistics *iwctl_get_wireless_stats(struct net_device *dev)
|
|
|
{
|
|
|
- PSDevice pDevice = dev->priv;
|
|
|
+ PSDevice pDevice = netdev_priv(dev);
|
|
|
long ldBm;
|
|
|
pDevice->wstats.status = pDevice->eOPMode;
|
|
|
#ifdef Calcu_LinkQual
|
|
@@ -209,7 +209,7 @@ int iwctl_siwscan(struct net_device *dev,
|
|
|
struct iw_point *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
struct iw_scan_req *req = (struct iw_scan_req *)extra;
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
BYTE abyScanSSID[WLAN_IEHDR_LEN + WLAN_SSID_MAXLEN + 1];
|
|
@@ -276,7 +276,7 @@ int iwctl_giwscan(struct net_device *dev,
|
|
|
char *extra)
|
|
|
{
|
|
|
int ii, jj, kk;
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
PKnownBSS pBSS;
|
|
|
PWLAN_IE_SSID pItemSSID;
|
|
@@ -522,7 +522,7 @@ int iwctl_siwfreq(struct net_device *dev,
|
|
|
struct iw_freq *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
int rc = 0;
|
|
|
|
|
|
DEVICE_PRT(MSG_LEVEL_DEBUG, KERN_INFO " SIOCSIWFREQ \n");
|
|
@@ -568,7 +568,7 @@ int iwctl_giwfreq(struct net_device *dev,
|
|
|
struct iw_freq *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
|
|
|
DEVICE_PRT(MSG_LEVEL_DEBUG, KERN_INFO " SIOCGIWFREQ \n");
|
|
@@ -598,7 +598,7 @@ int iwctl_siwmode(struct net_device *dev,
|
|
|
__u32 *wmode,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
int rc = 0;
|
|
|
|
|
@@ -665,7 +665,7 @@ int iwctl_giwmode(struct net_device *dev,
|
|
|
__u32 *wmode,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
|
|
|
|
|
@@ -819,7 +819,7 @@ int iwctl_siwap(struct net_device *dev,
|
|
|
struct sockaddr *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
int rc = 0;
|
|
|
BYTE ZeroBSSID[WLAN_BSSID_LEN]={0x00,0x00,0x00,0x00,0x00,0x00};
|
|
@@ -877,7 +877,7 @@ int iwctl_giwap(struct net_device *dev,
|
|
|
struct sockaddr *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
|
|
|
|
|
@@ -911,7 +911,7 @@ int iwctl_giwaplist(struct net_device *dev,
|
|
|
int ii,jj, rc = 0;
|
|
|
struct sockaddr sock[IW_MAX_AP];
|
|
|
struct iw_quality qual[IW_MAX_AP];
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
|
|
|
|
|
@@ -960,7 +960,7 @@ int iwctl_siwessid(struct net_device *dev,
|
|
|
struct iw_point *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
PWLAN_IE_SSID pItemSSID;
|
|
|
//2008-0409-05, <Add> by Einsn Liu
|
|
@@ -1089,7 +1089,7 @@ int iwctl_giwessid(struct net_device *dev,
|
|
|
char *extra)
|
|
|
{
|
|
|
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
PWLAN_IE_SSID pItemSSID;
|
|
|
|
|
@@ -1125,7 +1125,7 @@ int iwctl_siwrate(struct net_device *dev,
|
|
|
struct iw_param *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
int rc = 0;
|
|
|
u8 brate = 0;
|
|
|
int i;
|
|
@@ -1210,7 +1210,7 @@ int iwctl_giwrate(struct net_device *dev,
|
|
|
struct iw_param *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
//2007-0118-05,<Mark> by EinsnLiu
|
|
|
//Mark the unnecessary sentences.
|
|
|
// PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
@@ -1276,7 +1276,7 @@ int iwctl_siwrts(struct net_device *dev,
|
|
|
struct iw_param *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
int rc = 0;
|
|
|
|
|
|
DEVICE_PRT(MSG_LEVEL_DEBUG, KERN_INFO " SIOCSIWRTS \n");
|
|
@@ -1304,7 +1304,7 @@ int iwctl_giwrts(struct net_device *dev,
|
|
|
struct iw_param *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
|
|
|
DEVICE_PRT(MSG_LEVEL_DEBUG, KERN_INFO " SIOCGIWRTS \n");
|
|
|
wrq->value = pDevice->wRTSThreshold;
|
|
@@ -1323,7 +1323,7 @@ int iwctl_siwfrag(struct net_device *dev,
|
|
|
struct iw_param *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
int rc = 0;
|
|
|
int fthr = wrq->value;
|
|
|
|
|
@@ -1352,7 +1352,7 @@ int iwctl_giwfrag(struct net_device *dev,
|
|
|
struct iw_param *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
|
|
|
DEVICE_PRT(MSG_LEVEL_DEBUG, KERN_INFO " SIOCGIWFRAG \n");
|
|
|
wrq->value = pDevice->wFragmentationThreshold;
|
|
@@ -1372,7 +1372,7 @@ int iwctl_siwretry(struct net_device *dev,
|
|
|
struct iw_param *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
int rc = 0;
|
|
|
|
|
|
|
|
@@ -1410,7 +1410,7 @@ int iwctl_giwretry(struct net_device *dev,
|
|
|
struct iw_param *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
DEVICE_PRT(MSG_LEVEL_DEBUG, KERN_INFO " SIOCGIWRETRY \n");
|
|
|
wrq->disabled = 0; // Can't be disabled
|
|
|
|
|
@@ -1441,7 +1441,7 @@ int iwctl_siwencode(struct net_device *dev,
|
|
|
struct iw_point *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
DWORD dwKeyIndex = (DWORD)(wrq->flags & IW_ENCODE_INDEX);
|
|
|
int ii,uu, rc = 0;
|
|
@@ -1660,7 +1660,7 @@ int iwctl_giwencode(struct net_device *dev,
|
|
|
struct iw_point *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
int rc = 0;
|
|
|
char abyKey[WLAN_WEP232_KEYLEN];
|
|
@@ -1729,7 +1729,7 @@ int iwctl_giwencode(struct net_device *dev,
|
|
|
struct iw_point *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
char abyKey[WLAN_WEP232_KEYLEN];
|
|
|
|
|
@@ -1790,7 +1790,7 @@ int iwctl_siwpower(struct net_device *dev,
|
|
|
struct iw_param *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
int rc = 0;
|
|
|
|
|
@@ -1840,7 +1840,7 @@ int iwctl_giwpower(struct net_device *dev,
|
|
|
struct iw_param *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
int mode = pDevice->ePSMode;
|
|
|
|
|
@@ -1872,7 +1872,7 @@ int iwctl_giwsens(struct net_device *dev,
|
|
|
struct iw_param *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
long ldBm;
|
|
|
|
|
|
DEVICE_PRT(MSG_LEVEL_DEBUG, KERN_INFO " SIOCGIWSENS \n");
|
|
@@ -1898,7 +1898,7 @@ int iwctl_siwauth(struct net_device *dev,
|
|
|
struct iw_param *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
int ret=0;
|
|
|
static int wpa_version=0; //must be static to save the last value,einsn liu
|
|
@@ -2023,7 +2023,7 @@ int iwctl_siwgenie(struct net_device *dev,
|
|
|
struct iw_point *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
int ret=0;
|
|
|
|
|
@@ -2056,7 +2056,7 @@ int iwctl_giwgenie(struct net_device *dev,
|
|
|
struct iw_point *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
int ret=0;
|
|
|
int space = wrq->length;
|
|
@@ -2081,7 +2081,7 @@ int iwctl_siwencodeext(struct net_device *dev,
|
|
|
struct iw_point *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
struct iw_encode_ext *ext = (struct iw_encode_ext*)extra;
|
|
|
struct viawget_wpa_param *param=NULL;
|
|
|
//original member
|
|
@@ -2232,7 +2232,7 @@ int iwctl_siwmlme(struct net_device *dev,
|
|
|
struct iw_point *wrq,
|
|
|
char *extra)
|
|
|
{
|
|
|
- PSDevice pDevice = (PSDevice)dev->priv;
|
|
|
+ PSDevice pDevice = (PSDevice)netdev_priv(dev);
|
|
|
PSMgmtObject pMgmt = &(pDevice->sMgmtObj);
|
|
|
struct iw_mlme *mlme = (struct iw_mlme *)extra;
|
|
|
//u16 reason = cpu_to_le16(mlme->reason_code);
|