spin_lock_irq(&pDevice->lock);
 
                if (memcmp(pMgmt->abyCurrBSSID, &abyNullAddr[0], 6) == 0)
-                       BSSvClearBSSList((void *)pDevice, FALSE);
+                       BSSvClearBSSList(pDevice, FALSE);
                else
-                       BSSvClearBSSList((void *)pDevice, pDevice->bLinkPass);
+                       BSSvClearBSSList(pDevice, pDevice->bLinkPass);
 
                DBG_PRT(MSG_LEVEL_DEBUG, KERN_INFO "WLAN_CMD_BSS_SCAN..begin\n");
 
                if (pItemSSID->len != 0)
-                       bScheduleCommand((void *)pDevice,
-                                        WLAN_CMD_BSSID_SCAN,
+                       bScheduleCommand(pDevice, WLAN_CMD_BSSID_SCAN,
                                         abyScanSSID);
                else
-                       bScheduleCommand((void *) pDevice, WLAN_CMD_BSSID_SCAN, NULL);
+                       bScheduleCommand(pDevice, WLAN_CMD_BSSID_SCAN, NULL);
 
                spin_unlock_irq(&pDevice->lock);
                break;
                netif_stop_queue(pDevice->dev);
                spin_lock_irq(&pDevice->lock);
                pMgmt->eCurrState = WMAC_STATE_IDLE;
-               bScheduleCommand((void *) pDevice,
-                                WLAN_CMD_BSSID_SCAN,
+               bScheduleCommand(pDevice, WLAN_CMD_BSSID_SCAN,
                                 pMgmt->abyDesireSSID);
-               bScheduleCommand((void *) pDevice, WLAN_CMD_SSID, NULL);
+               bScheduleCommand(pDevice, WLAN_CMD_SSID, NULL);
                spin_unlock_irq(&pDevice->lock);
                break;
 
                        result = -EINVAL;
                        break;
                }
-               pList = (PSBSSIDList)kmalloc(sizeof(SBSSIDList) + (sList.uItem * sizeof(SBSSIDItem)), (int)GFP_ATOMIC);
+               pList = kmalloc(sizeof(SBSSIDList) + (sList.uItem * sizeof(SBSSIDItem)), GFP_ATOMIC);
                if (pList == NULL) {
                        result = -ENOMEM;
                        break;
 
                netif_stop_queue(pDevice->dev);
                spin_lock_irq(&pDevice->lock);
-               bScheduleCommand((void *)pDevice, WLAN_CMD_RUN_AP, NULL);
+               bScheduleCommand(pDevice, WLAN_CMD_RUN_AP, NULL);
                spin_unlock_irq(&pDevice->lock);
                break;
 
                        result = -ENOMEM;
                        break;
                }
-               pNodeList = (PSNodeList)kmalloc(sizeof(SNodeList) + (sNodeList.uItem * sizeof(SNodeItem)), (int)GFP_ATOMIC);
+               pNodeList = (PSNodeList)kmalloc(sizeof(SNodeList) + (sNodeList.uItem * sizeof(SNodeItem)), GFP_ATOMIC);
                if (pNodeList == NULL) {
                        result = -ENOMEM;
                        break;