staging: vt6656: iwctl: remove spaces between casts and variables
authorJesper Juhl <jj@chaosbits.net>
Sun, 24 Jun 2012 23:57:13 +0000 (01:57 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 25 Jun 2012 18:17:38 +0000 (11:17 -0700)
We do not usually write a space between a cast and the variable being
converted. this patch removes such spaces where they occour in iwctl.c

Signed-off-by: Jesper Juhl <jj@chaosbits.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/vt6656/iwctl.c

index 3249a01..9b7d752 100644 (file)
@@ -70,7 +70,7 @@ struct iw_statistics *iwctl_get_wireless_stats(struct net_device *dev)
        pDevice->wstats.status = pDevice->eOPMode;
        if(pDevice->scStatistic.LinkQuality > 100)
                pDevice->scStatistic.LinkQuality = 100;
-       pDevice->wstats.qual.qual =(BYTE) pDevice->scStatistic.LinkQuality;
+       pDevice->wstats.qual.qual =(BYTE)pDevice->scStatistic.LinkQuality;
        RFvRSSITodBm(pDevice, (BYTE)(pDevice->uCurrRSSI), &ldBm);
        pDevice->wstats.qual.level = ldBm;
        pDevice->wstats.qual.noise = 0;
@@ -128,7 +128,7 @@ int iwctl_siwscan(struct net_device *dev, struct iw_request_info *info,
 
        spin_lock_irq(&pDevice->lock);
 
-       BSSvClearBSSList((void *) pDevice, pDevice->bLinkPass);
+       BSSvClearBSSList((void *)pDevice, pDevice->bLinkPass);
 
 //mike add: active scan OR passive scan OR desire_ssid scan
        if(wrq->length == sizeof(struct iw_scan_req)) {
@@ -146,7 +146,7 @@ int iwctl_siwscan(struct net_device *dev, struct iw_request_info *info,
                        pMgmt->eScanType = WMAC_SCAN_PASSIVE;
                        PRINT_K("SIOCSIWSCAN:[desired_ssid=%s,len=%d]\n",((PWLAN_IE_SSID)abyScanSSID)->abySSID,
                                ((PWLAN_IE_SSID)abyScanSSID)->len);
-                       bScheduleCommand((void *) pDevice, WLAN_CMD_BSSID_SCAN, abyScanSSID);
+                       bScheduleCommand((void *)pDevice, WLAN_CMD_BSSID_SCAN, abyScanSSID);
                        spin_unlock_irq(&pDevice->lock);
 
                        return 0;
@@ -160,7 +160,7 @@ int iwctl_siwscan(struct net_device *dev, struct iw_request_info *info,
        }
 
        pMgmt->eScanType = WMAC_SCAN_PASSIVE;
-       bScheduleCommand((void *) pDevice, WLAN_CMD_BSSID_SCAN, NULL);
+       bScheduleCommand((void *)pDevice, WLAN_CMD_BSSID_SCAN, NULL);
        spin_unlock_irq(&pDevice->lock);
 
        return 0;
@@ -330,8 +330,8 @@ int iwctl_siwfreq(struct net_device *dev, struct iw_request_info *info,
 
        // If setting by frequency, convert to a channel
        if((wrq->e == 1) &&
-               (wrq->m >= (int) 2.412e8) &&
-               (wrq->m <= (int) 2.487e8)) {
+               (wrq->m >= (int)2.412e8) &&
+               (wrq->m <= (int)2.487e8)) {
                int f = wrq->m / 100000;
                int c = 0;
                while((c < 14) && (f != frequency_list[c]))
@@ -483,7 +483,7 @@ void iwctl_giwmode(struct net_device *dev, struct iw_request_info *info,
 void iwctl_giwrange(struct net_device *dev, struct iw_request_info *info,
                struct iw_point *wrq, char *extra)
 {
-       struct iw_range *range = (struct iw_range *) extra;
+       struct iw_range *range = (struct iw_range *)extra;
        int i;
        int k;
        BYTE abySupportedRates[13] = {
@@ -761,12 +761,12 @@ int iwctl_siwessid(struct net_device *dev, struct iw_request_info *info,
 
                        if (pCurr == NULL){
                                PRINT_K("SIOCSIWESSID:hidden ssid site survey before associate.......\n");
-                               vResetCommandTimer((void *) pDevice);
+                               vResetCommandTimer((void *)pDevice);
                                pMgmt->eScanType = WMAC_SCAN_ACTIVE;
-                               bScheduleCommand((void *) pDevice,
+                               bScheduleCommand((void *)pDevice,
                                                WLAN_CMD_BSSID_SCAN,
                                                pMgmt->abyDesireSSID);
-                               bScheduleCommand((void *) pDevice,
+                               bScheduleCommand((void *)pDevice,
                                                WLAN_CMD_SSID,
                                                pMgmt->abyDesireSSID);
                        }
@@ -781,12 +781,12 @@ int iwctl_siwessid(struct net_device *dev, struct iw_request_info *info,
                                }
                                if(uSameBssidNum >= 2) {  //hit: desired AP is in hidden ssid mode!!!
                                        PRINT_K("SIOCSIWESSID:hidden ssid directly associate.......\n");
-                                       vResetCommandTimer((void *) pDevice);
+                                       vResetCommandTimer((void *)pDevice);
                                        pMgmt->eScanType = WMAC_SCAN_PASSIVE;          //this scan type,you'll submit scan result!
-                                       bScheduleCommand((void *) pDevice,
+                                       bScheduleCommand((void *)pDevice,
                                                        WLAN_CMD_BSSID_SCAN,
                                                        pMgmt->abyDesireSSID);
-                                       bScheduleCommand((void *) pDevice,
+                                       bScheduleCommand((void *)pDevice,
                                                        WLAN_CMD_SSID,
                                                        pMgmt->abyDesireSSID);
                                }
@@ -1272,11 +1272,11 @@ int iwctl_siwpower(struct net_device *dev, struct iw_request_info *info,
        }
        if ((wrq->flags & IW_POWER_TYPE) == IW_POWER_TIMEOUT) {
                pDevice->ePSMode = WMAC_POWER_FAST;
-               PSvEnablePowerSaving((void *) pDevice, pMgmt->wListenInterval);
+               PSvEnablePowerSaving((void *)pDevice, pMgmt->wListenInterval);
 
        } else if ((wrq->flags & IW_POWER_TYPE) == IW_POWER_PERIOD) {
                pDevice->ePSMode = WMAC_POWER_FAST;
-               PSvEnablePowerSaving((void *) pDevice, pMgmt->wListenInterval);
+               PSvEnablePowerSaving((void *)pDevice, pMgmt->wListenInterval);
        }
        switch (wrq->flags & IW_POWER_MODE) {
        case IW_POWER_UNICAST_R:
@@ -1533,7 +1533,7 @@ int iwctl_siwencodeext(struct net_device *dev, struct iw_request_info *info,
        if (buf == NULL)
                return -ENOMEM;
        memset(buf, 0, blen);
-       param = (struct viawget_wpa_param *) buf;
+       param = (struct viawget_wpa_param *)buf;
 
 //recover alg_name
        switch (ext->alg) {
@@ -1653,7 +1653,7 @@ int iwctl_siwmlme(struct net_device *dev, struct iw_request_info *info,
        case IW_MLME_DISASSOC:
                if(pDevice->bLinkPass == TRUE){
                        PRINT_K("iwctl_siwmlme--->send DISASSOCIATE\n");
-                       bScheduleCommand((void *) pDevice,
+                       bScheduleCommand((void *)pDevice,
                                        WLAN_CMD_DISASSOCIATE,
                                        NULL);
                }
@@ -1667,62 +1667,62 @@ int iwctl_siwmlme(struct net_device *dev, struct iw_request_info *info,
 #endif
 
 static const iw_handler iwctl_handler[] = {
-       (iw_handler) NULL,      /* SIOCSIWCOMMIT */
-       (iw_handler) NULL,      // SIOCGIWNAME
-       (iw_handler) NULL,                              // SIOCSIWNWID
-       (iw_handler) NULL,                              // SIOCGIWNWID
-       (iw_handler) NULL,              // SIOCSIWFREQ
-       (iw_handler) NULL,              // SIOCGIWFREQ
-       (iw_handler) NULL,              // SIOCSIWMODE
-       (iw_handler) NULL,              // SIOCGIWMODE
-       (iw_handler) NULL,                      // SIOCSIWSENS
-       (iw_handler) NULL,                      // SIOCGIWSENS
-       (iw_handler) NULL,                      // SIOCSIWRANGE
-       (iw_handler) iwctl_giwrange,            // SIOCGIWRANGE
-       (iw_handler) NULL,                          // SIOCSIWPRIV
-       (iw_handler) NULL,                      // SIOCGIWPRIV
-       (iw_handler) NULL,                      // SIOCSIWSTATS
-       (iw_handler) NULL,                  // SIOCGIWSTATS
-       (iw_handler) NULL,                  // SIOCSIWSPY
-       (iw_handler) NULL,                          // SIOCGIWSPY
-       (iw_handler) NULL,                                  // -- hole --
-       (iw_handler) NULL,                                  // -- hole --
-       (iw_handler) NULL,                  // SIOCSIWAP
-       (iw_handler) NULL,                  // SIOCGIWAP
-       (iw_handler) NULL,                                  // -- hole -- 0x16
-       (iw_handler) NULL,       // SIOCGIWAPLIST
-       (iw_handler) iwctl_siwscan,         // SIOCSIWSCAN
-       (iw_handler) iwctl_giwscan,         // SIOCGIWSCAN
-       (iw_handler) NULL,              // SIOCSIWESSID
-       (iw_handler) NULL,              // SIOCGIWESSID
-       (iw_handler) NULL,              // SIOCSIWNICKN
-       (iw_handler) NULL,              // SIOCGIWNICKN
-       (iw_handler) NULL,              // -- hole --
-       (iw_handler) NULL,              // -- hole --
-       (iw_handler) NULL,              // SIOCSIWRATE 0x20
-       (iw_handler) NULL,              // SIOCGIWRATE
-       (iw_handler) NULL,              // SIOCSIWRTS
-       (iw_handler) NULL,              // SIOCGIWRTS
-       (iw_handler) NULL,              // SIOCSIWFRAG
-       (iw_handler) NULL,              // SIOCGIWFRAG
-       (iw_handler) NULL,              // SIOCSIWTXPOW
-       (iw_handler) NULL,              // SIOCGIWTXPOW
-       (iw_handler) NULL,              // SIOCSIWRETRY
-       (iw_handler) NULL,              // SIOCGIWRETRY
-       (iw_handler) NULL,              // SIOCSIWENCODE
-       (iw_handler) NULL,              // SIOCGIWENCODE
-       (iw_handler) NULL,              // SIOCSIWPOWER
-       (iw_handler) NULL,              // SIOCGIWPOWER
-       (iw_handler) NULL,                      // -- hole --
-       (iw_handler) NULL,                      // -- hole --
-       (iw_handler) NULL,    // SIOCSIWGENIE
-       (iw_handler) NULL,    // SIOCGIWGENIE
-       (iw_handler) NULL,              // SIOCSIWAUTH
-       (iw_handler) NULL,              // SIOCGIWAUTH
-       (iw_handler) NULL,              // SIOCSIWENCODEEXT
-       (iw_handler) NULL,              // SIOCGIWENCODEEXT
-       (iw_handler) NULL,                              // SIOCSIWPMKSA
-       (iw_handler) NULL,                              // -- hole --
+       (iw_handler)NULL,      /* SIOCSIWCOMMIT */
+       (iw_handler)NULL,      // SIOCGIWNAME
+       (iw_handler)NULL,                               // SIOCSIWNWID
+       (iw_handler)NULL,                               // SIOCGIWNWID
+       (iw_handler)NULL,               // SIOCSIWFREQ
+       (iw_handler)NULL,               // SIOCGIWFREQ
+       (iw_handler)NULL,               // SIOCSIWMODE
+       (iw_handler)NULL,               // SIOCGIWMODE
+       (iw_handler)NULL,                       // SIOCSIWSENS
+       (iw_handler)NULL,                       // SIOCGIWSENS
+       (iw_handler)NULL,                       // SIOCSIWRANGE
+       (iw_handler)iwctl_giwrange,             // SIOCGIWRANGE
+       (iw_handler)NULL,                           // SIOCSIWPRIV
+       (iw_handler)NULL,                       // SIOCGIWPRIV
+       (iw_handler)NULL,                       // SIOCSIWSTATS
+       (iw_handler)NULL,                  // SIOCGIWSTATS
+       (iw_handler)NULL,                  // SIOCSIWSPY
+       (iw_handler)NULL,                           // SIOCGIWSPY
+       (iw_handler)NULL,                                   // -- hole --
+       (iw_handler)NULL,                                   // -- hole --
+       (iw_handler)NULL,                   // SIOCSIWAP
+       (iw_handler)NULL,                   // SIOCGIWAP
+       (iw_handler)NULL,                                   // -- hole -- 0x16
+       (iw_handler)NULL,       // SIOCGIWAPLIST
+       (iw_handler)iwctl_siwscan,         // SIOCSIWSCAN
+       (iw_handler)iwctl_giwscan,         // SIOCGIWSCAN
+       (iw_handler)NULL,               // SIOCSIWESSID
+       (iw_handler)NULL,               // SIOCGIWESSID
+       (iw_handler)NULL,               // SIOCSIWNICKN
+       (iw_handler)NULL,               // SIOCGIWNICKN
+       (iw_handler)NULL,               // -- hole --
+       (iw_handler)NULL,               // -- hole --
+       (iw_handler)NULL,               // SIOCSIWRATE 0x20
+       (iw_handler)NULL,               // SIOCGIWRATE
+       (iw_handler)NULL,               // SIOCSIWRTS
+       (iw_handler)NULL,               // SIOCGIWRTS
+       (iw_handler)NULL,               // SIOCSIWFRAG
+       (iw_handler)NULL,               // SIOCGIWFRAG
+       (iw_handler)NULL,               // SIOCSIWTXPOW
+       (iw_handler)NULL,               // SIOCGIWTXPOW
+       (iw_handler)NULL,               // SIOCSIWRETRY
+       (iw_handler)NULL,               // SIOCGIWRETRY
+       (iw_handler)NULL,               // SIOCSIWENCODE
+       (iw_handler)NULL,               // SIOCGIWENCODE
+       (iw_handler)NULL,               // SIOCSIWPOWER
+       (iw_handler)NULL,               // SIOCGIWPOWER
+       (iw_handler)NULL,                       // -- hole --
+       (iw_handler)NULL,                       // -- hole --
+       (iw_handler)NULL,    // SIOCSIWGENIE
+       (iw_handler)NULL,    // SIOCGIWGENIE
+       (iw_handler)NULL,               // SIOCSIWAUTH
+       (iw_handler)NULL,               // SIOCGIWAUTH
+       (iw_handler)NULL,               // SIOCSIWENCODEEXT
+       (iw_handler)NULL,               // SIOCGIWENCODEEXT
+       (iw_handler)NULL,                               // SIOCSIWPMKSA
+       (iw_handler)NULL,                               // -- hole --
 };
 
 static const iw_handler iwctl_private_handler[] = {
@@ -1740,7 +1740,7 @@ const struct iw_handler_def iwctl_handler_def = {
        .num_standard   = sizeof(iwctl_handler)/sizeof(iw_handler),
        .num_private    = 0,
        .num_private_args = 0,
-       .standard       = (iw_handler *) iwctl_handler,
+       .standard       = (iw_handler *)iwctl_handler,
        .private        = NULL,
        .private_args   = NULL,
 };