Commit 77e73e8c authored by Thomas Cort's avatar Thomas Cort Committed by Greg Kroah-Hartman

Staging: rtl8712: fix spaces before semicolons

Resolve all of the 'WARNING: space prohibited before semicolon'
checkpatch warnings for rtl8712.
Signed-off-by: default avatarThomas Cort <linuxgeek@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2d115547
...@@ -141,7 +141,7 @@ static uint loadparam(struct _adapter *padapter, struct net_device *pnetdev) ...@@ -141,7 +141,7 @@ static uint loadparam(struct _adapter *padapter, struct net_device *pnetdev)
registry_par->ssid.SsidLength = 3; registry_par->ssid.SsidLength = 3;
registry_par->channel = (u8)channel; registry_par->channel = (u8)channel;
registry_par->wireless_mode = (u8)wireless_mode; registry_par->wireless_mode = (u8)wireless_mode;
registry_par->vrtl_carrier_sense = (u8)vrtl_carrier_sense ; registry_par->vrtl_carrier_sense = (u8)vrtl_carrier_sense;
registry_par->vcs_type = (u8)vcs_type; registry_par->vcs_type = (u8)vcs_type;
registry_par->frag_thresh = (u16)frag_thresh; registry_par->frag_thresh = (u16)frag_thresh;
registry_par->preamble = (u8)preamble; registry_par->preamble = (u8)preamble;
......
...@@ -62,7 +62,7 @@ static void check_hw_pbc(struct _adapter *padapter) ...@@ -62,7 +62,7 @@ static void check_hw_pbc(struct _adapter *padapter)
r8712_write8(padapter, GPIO_IO_SEL, tmp1byte); r8712_write8(padapter, GPIO_IO_SEL, tmp1byte);
tmp1byte = r8712_read8(padapter, GPIO_CTRL); tmp1byte = r8712_read8(padapter, GPIO_CTRL);
if (tmp1byte == 0xff) if (tmp1byte == 0xff)
return ; return;
if (tmp1byte&HAL_8192S_HW_GPIO_WPS_BIT) { if (tmp1byte&HAL_8192S_HW_GPIO_WPS_BIT) {
/* Here we only set bPbcPressed to true /* Here we only set bPbcPressed to true
* After trigger PBC, the variable will be set to false */ * After trigger PBC, the variable will be set to false */
...@@ -381,7 +381,7 @@ int r8712_cmd_thread(void *context) ...@@ -381,7 +381,7 @@ int r8712_cmd_thread(void *context)
*pcmdbuf = cpu_to_le32((cmdsz & 0x0000ffff) | *pcmdbuf = cpu_to_le32((cmdsz & 0x0000ffff) |
(pcmd->cmdcode << 16) | (pcmd->cmdcode << 16) |
(pcmdpriv->cmd_seq << 24)); (pcmdpriv->cmd_seq << 24));
pcmdbuf += 2 ; /* 8 bytes alignment */ pcmdbuf += 2; /* 8 bytes alignment */
memcpy((u8 *)pcmdbuf, pcmd->parmbuf, pcmd->cmdsz); memcpy((u8 *)pcmdbuf, pcmd->parmbuf, pcmd->cmdsz);
while (check_cmd_fifo(padapter, wr_sz) == _FAIL) { while (check_cmd_fifo(padapter, wr_sz) == _FAIL) {
if ((padapter->bDriverStopped == true) || if ((padapter->bDriverStopped == true) ||
......
...@@ -231,7 +231,7 @@ u16 r8712_efuse_get_current_size(struct _adapter *padapter) ...@@ -231,7 +231,7 @@ u16 r8712_efuse_get_current_size(struct _adapter *padapter)
/* read next header */ /* read next header */
efuse_addr = efuse_addr + (word_cnts * 2) + 1; efuse_addr = efuse_addr + (word_cnts * 2) + 1;
} else } else
bContinual = false ; bContinual = false;
} }
return efuse_addr; return efuse_addr;
} }
......
...@@ -108,7 +108,7 @@ void r8712_free_recv_priv(struct recv_priv *precvpriv) ...@@ -108,7 +108,7 @@ void r8712_free_recv_priv(struct recv_priv *precvpriv)
struct _adapter *padapter = precvpriv->adapter; struct _adapter *padapter = precvpriv->adapter;
precvbuf = (struct recv_buf *)precvpriv->precv_buf; precvbuf = (struct recv_buf *)precvpriv->precv_buf;
for (i = 0; i < NR_RECVBUFF ; i++) { for (i = 0; i < NR_RECVBUFF; i++) {
r8712_os_recvbuf_resource_free(padapter, precvbuf); r8712_os_recvbuf_resource_free(padapter, precvbuf);
precvbuf++; precvbuf++;
} }
...@@ -268,7 +268,7 @@ union recv_frame *r8712_recvframe_chk_defrag(struct _adapter *padapter, ...@@ -268,7 +268,7 @@ union recv_frame *r8712_recvframe_chk_defrag(struct _adapter *padapter,
u8 *psta_addr; u8 *psta_addr;
struct recv_frame_hdr *pfhdr; struct recv_frame_hdr *pfhdr;
struct sta_info *psta; struct sta_info *psta;
struct sta_priv *pstapriv ; struct sta_priv *pstapriv;
struct list_head *phead; struct list_head *phead;
union recv_frame *prtnframe = NULL; union recv_frame *prtnframe = NULL;
struct __queue *pfree_recv_queue, *pdefrag_q; struct __queue *pfree_recv_queue, *pdefrag_q;
...@@ -849,7 +849,7 @@ static void query_rx_phy_status(struct _adapter *padapter, ...@@ -849,7 +849,7 @@ static void query_rx_phy_status(struct _adapter *padapter,
} else { } else {
/* (1)Get RSSI for HT rate */ /* (1)Get RSSI for HT rate */
for (i = 0; i < ((padapter->registrypriv.rf_config) & for (i = 0; i < ((padapter->registrypriv.rf_config) &
0x0f) ; i++) { 0x0f); i++) {
rf_rx_num++; rf_rx_num++;
rx_pwr[i] = ((pphy_head[PHY_STAT_GAIN_TRSW_SHT + i] rx_pwr[i] = ((pphy_head[PHY_STAT_GAIN_TRSW_SHT + i]
& 0x3F) * 2) - 110; & 0x3F) * 2) - 110;
......
...@@ -965,7 +965,7 @@ void r8712_createbss_cmd_callback(struct _adapter *padapter, ...@@ -965,7 +965,7 @@ void r8712_createbss_cmd_callback(struct _adapter *padapter,
psta = r8712_alloc_stainfo(&padapter->stapriv, psta = r8712_alloc_stainfo(&padapter->stapriv,
pnetwork->MacAddress); pnetwork->MacAddress);
if (psta == NULL) if (psta == NULL)
goto createbss_cmd_fail ; goto createbss_cmd_fail;
} }
r8712_indicate_connect(padapter); r8712_indicate_connect(padapter);
} else { } else {
......
...@@ -820,7 +820,7 @@ static int r871x_wx_set_pmkid(struct net_device *dev, ...@@ -820,7 +820,7 @@ static int r871x_wx_set_pmkid(struct net_device *dev,
intReturn = true; intReturn = true;
blInserted = false; blInserted = false;
/* overwrite PMKID */ /* overwrite PMKID */
for (j = 0 ; j < NUM_PMKID_CACHE; j++) { for (j = 0; j < NUM_PMKID_CACHE; j++) {
if (!memcmp(psecuritypriv->PMKIDList[j].Bssid, if (!memcmp(psecuritypriv->PMKIDList[j].Bssid,
strIssueBssid, ETH_ALEN)) { strIssueBssid, ETH_ALEN)) {
/* BSSID is matched, the same AP => rewrite /* BSSID is matched, the same AP => rewrite
...@@ -845,7 +845,7 @@ static int r871x_wx_set_pmkid(struct net_device *dev, ...@@ -845,7 +845,7 @@ static int r871x_wx_set_pmkid(struct net_device *dev,
PMKIDIndex].PMKID, pPMK->pmkid, IW_PMKID_LEN); PMKIDIndex].PMKID, pPMK->pmkid, IW_PMKID_LEN);
psecuritypriv->PMKIDList[psecuritypriv->PMKIDIndex]. psecuritypriv->PMKIDList[psecuritypriv->PMKIDIndex].
bUsed = true; bUsed = true;
psecuritypriv->PMKIDIndex++ ; psecuritypriv->PMKIDIndex++;
if (psecuritypriv->PMKIDIndex == NUM_PMKID_CACHE) if (psecuritypriv->PMKIDIndex == NUM_PMKID_CACHE)
psecuritypriv->PMKIDIndex = 0; psecuritypriv->PMKIDIndex = 0;
} }
...@@ -1598,7 +1598,7 @@ static int r8711_wx_set_enc(struct net_device *dev, ...@@ -1598,7 +1598,7 @@ static int r8711_wx_set_enc(struct net_device *dev,
wep.Length = wep.KeyLength + wep.Length = wep.KeyLength +
FIELD_OFFSET(struct NDIS_802_11_WEP, KeyMaterial); FIELD_OFFSET(struct NDIS_802_11_WEP, KeyMaterial);
} else { } else {
wep.KeyLength = 0 ; wep.KeyLength = 0;
if (keyindex_provided == 1) { /* set key_id only, no given if (keyindex_provided == 1) { /* set key_id only, no given
* KeyMaterial(erq->length==0).*/ * KeyMaterial(erq->length==0).*/
padapter->securitypriv.PrivacyKeyIndex = key; padapter->securitypriv.PrivacyKeyIndex = key;
...@@ -1880,7 +1880,7 @@ static int r8711_wx_write32(struct net_device *dev, ...@@ -1880,7 +1880,7 @@ static int r8711_wx_write32(struct net_device *dev,
u32 data32; u32 data32;
get_user(addr, (u32 __user *)wrqu->data.pointer); get_user(addr, (u32 __user *)wrqu->data.pointer);
data32 = ((u32)wrqu->data.length<<16) | (u32)wrqu->data.flags ; data32 = ((u32)wrqu->data.length<<16) | (u32)wrqu->data.flags;
r8712_write32(padapter, addr, data32); r8712_write32(padapter, addr, data32);
return 0; return 0;
} }
......
...@@ -153,7 +153,7 @@ uint oid_rt_get_rx_icv_err_hdl(struct oid_par_priv *poid_par_priv) ...@@ -153,7 +153,7 @@ uint oid_rt_get_rx_icv_err_hdl(struct oid_par_priv *poid_par_priv)
padapter->recvpriv.rx_icv_err; padapter->recvpriv.rx_icv_err;
*poid_par_priv->bytes_rw = poid_par_priv->information_buf_len; *poid_par_priv->bytes_rw = poid_par_priv->information_buf_len;
} else } else
return RNDIS_STATUS_INVALID_LENGTH ; return RNDIS_STATUS_INVALID_LENGTH;
return RNDIS_STATUS_SUCCESS; return RNDIS_STATUS_SUCCESS;
} }
...@@ -169,7 +169,7 @@ uint oid_rt_get_preamble_mode_hdl(struct oid_par_priv *poid_par_priv) ...@@ -169,7 +169,7 @@ uint oid_rt_get_preamble_mode_hdl(struct oid_par_priv *poid_par_priv)
{ {
struct _adapter *padapter = (struct _adapter *) struct _adapter *padapter = (struct _adapter *)
(poid_par_priv->adapter_context); (poid_par_priv->adapter_context);
u32 preamblemode = 0 ; u32 preamblemode = 0;
if (poid_par_priv->type_of_oid != QUERY_OID) if (poid_par_priv->type_of_oid != QUERY_OID)
return RNDIS_STATUS_NOT_ACCEPTED; return RNDIS_STATUS_NOT_ACCEPTED;
...@@ -522,7 +522,7 @@ uint oid_rt_get_connect_state_hdl(struct oid_par_priv *poid_par_priv) ...@@ -522,7 +522,7 @@ uint oid_rt_get_connect_state_hdl(struct oid_par_priv *poid_par_priv)
else if (check_fwstate(pmlmepriv, WIFI_ADHOC_STATE) == true) else if (check_fwstate(pmlmepriv, WIFI_ADHOC_STATE) == true)
ulInfo = ADHOCMODE; ulInfo = ADHOCMODE;
else else
ulInfo = NOTASSOCIATED ; ulInfo = NOTASSOCIATED;
*(u32 *)poid_par_priv->information_buf = ulInfo; *(u32 *)poid_par_priv->information_buf = ulInfo;
*poid_par_priv->bytes_rw = poid_par_priv->information_buf_len; *poid_par_priv->bytes_rw = poid_par_priv->information_buf_len;
return RNDIS_STATUS_SUCCESS; return RNDIS_STATUS_SUCCESS;
......
...@@ -1641,7 +1641,7 @@ void r8712_update_registrypriv_dev_network(struct _adapter *adapter) ...@@ -1641,7 +1641,7 @@ void r8712_update_registrypriv_dev_network(struct _adapter *adapter)
struct wlan_network *cur_network = &adapter->mlmepriv.cur_network; struct wlan_network *cur_network = &adapter->mlmepriv.cur_network;
pdev_network->Privacy = cpu_to_le32(psecuritypriv->PrivacyAlgrthm pdev_network->Privacy = cpu_to_le32(psecuritypriv->PrivacyAlgrthm
> 0 ? 1 : 0) ; /* adhoc no 802.1x */ > 0 ? 1 : 0); /* adhoc no 802.1x */
pdev_network->Rssi = 0; pdev_network->Rssi = 0;
switch (pregistrypriv->wireless_mode) { switch (pregistrypriv->wireless_mode) {
case WIRELESS_11B: case WIRELESS_11B:
...@@ -1786,7 +1786,7 @@ static void update_ht_cap(struct _adapter *padapter, u8 *pie, uint ie_len) ...@@ -1786,7 +1786,7 @@ static void update_ht_cap(struct _adapter *padapter, u8 *pie, uint ie_len)
psta = r8712_get_stainfo(&padapter->stapriv, psta = r8712_get_stainfo(&padapter->stapriv,
pcur_network->network.MacAddress); pcur_network->network.MacAddress);
if (psta) { if (psta) {
for (i = 0; i < 16 ; i++) { for (i = 0; i < 16; i++) {
preorder_ctrl = &psta->recvreorder_ctrl[i]; preorder_ctrl = &psta->recvreorder_ctrl[i];
preorder_ctrl->indicate_seq = 0xffff; preorder_ctrl->indicate_seq = 0xffff;
preorder_ctrl->wend_b = 0xffff; preorder_ctrl->wend_b = 0xffff;
......
...@@ -110,7 +110,7 @@ static u32 fw_iocmd_read(struct _adapter *pAdapter, struct IOCMD_STRUCT iocmd) ...@@ -110,7 +110,7 @@ static u32 fw_iocmd_read(struct _adapter *pAdapter, struct IOCMD_STRUCT iocmd)
u16 iocmd_value = iocmd.value; u16 iocmd_value = iocmd.value;
u8 iocmd_idx = iocmd.index; u8 iocmd_idx = iocmd.index;
cmd32 = (iocmd_class << 24) | (iocmd_value << 8) | iocmd_idx ; cmd32 = (iocmd_class << 24) | (iocmd_value << 8) | iocmd_idx;
if (r8712_fw_cmd(pAdapter, cmd32)) if (r8712_fw_cmd(pAdapter, cmd32))
r8712_fw_cmd_data(pAdapter, &val32, 1); r8712_fw_cmd_data(pAdapter, &val32, 1);
else else
...@@ -128,7 +128,7 @@ static u8 fw_iocmd_write(struct _adapter *pAdapter, ...@@ -128,7 +128,7 @@ static u8 fw_iocmd_write(struct _adapter *pAdapter,
r8712_fw_cmd_data(pAdapter, &value, 0); r8712_fw_cmd_data(pAdapter, &value, 0);
msleep(100); msleep(100);
cmd32 = (iocmd_class << 24) | (iocmd_value << 8) | iocmd_idx ; cmd32 = (iocmd_class << 24) | (iocmd_value << 8) | iocmd_idx;
return r8712_fw_cmd(pAdapter, cmd32); return r8712_fw_cmd(pAdapter, cmd32);
} }
...@@ -189,8 +189,8 @@ u32 r8712_rf_reg_read(struct _adapter *pAdapter, u8 path, u8 offset) ...@@ -189,8 +189,8 @@ u32 r8712_rf_reg_read(struct _adapter *pAdapter, u8 path, u8 offset)
u32 rf_data; u32 rf_data;
struct IOCMD_STRUCT iocmd; struct IOCMD_STRUCT iocmd;
iocmd.cmdclass = IOCMD_CLASS_BB_RF ; iocmd.cmdclass = IOCMD_CLASS_BB_RF;
iocmd.value = rf_addr ; iocmd.value = rf_addr;
iocmd.index = IOCMD_RF_READ_IDX; iocmd.index = IOCMD_RF_READ_IDX;
rf_data = fw_iocmd_read(pAdapter, iocmd); rf_data = fw_iocmd_read(pAdapter, iocmd);
return rf_data; return rf_data;
......
...@@ -835,7 +835,7 @@ static void mix_column(u8 *in, u8 *out) ...@@ -835,7 +835,7 @@ static void mix_column(u8 *in, u8 *out)
u8 temp[4]; u8 temp[4];
u8 tempb[4]; u8 tempb[4];
for (i = 0 ; i < 4; i++) { for (i = 0; i < 4; i++) {
if ((in[i] & 0x80) == 0x80) if ((in[i] & 0x80) == 0x80)
add1b[i] = 0x1b; add1b[i] = 0x1b;
else else
...@@ -1187,7 +1187,7 @@ u32 r8712_aes_encrypt(struct _adapter *padapter, u8 *pxmitframe) ...@@ -1187,7 +1187,7 @@ u32 r8712_aes_encrypt(struct _adapter *padapter, u8 *pxmitframe)
length = pxmitpriv->frag_len - length = pxmitpriv->frag_len -
pattrib->hdrlen - pattrib->hdrlen -
pattrib->iv_len - pattrib->iv_len -
pattrib->icv_len ; pattrib->icv_len;
aes_cipher(prwskey, pattrib-> aes_cipher(prwskey, pattrib->
hdrlen, pframe, length); hdrlen, pframe, length);
pframe += pxmitpriv->frag_len; pframe += pxmitpriv->frag_len;
...@@ -1315,7 +1315,7 @@ static sint aes_decipher(u8 *key, uint hdrlen, ...@@ -1315,7 +1315,7 @@ static sint aes_decipher(u8 *key, uint hdrlen,
bitwise_xor(aes_out, padded_buffer, chain_buffer); bitwise_xor(aes_out, padded_buffer, chain_buffer);
aes128k128d(key, chain_buffer, aes_out); aes128k128d(key, chain_buffer, aes_out);
} }
for (j = 0 ; j < 8; j++) for (j = 0; j < 8; j++)
mic[j] = aes_out[j]; mic[j] = aes_out[j];
/* Insert MIC into payload */ /* Insert MIC into payload */
for (j = 0; j < 8; j++) for (j = 0; j < 8; j++)
......
...@@ -138,7 +138,7 @@ struct sta_info *r8712_alloc_stainfo(struct sta_priv *pstapriv, u8 *hwaddr) ...@@ -138,7 +138,7 @@ struct sta_info *r8712_alloc_stainfo(struct sta_priv *pstapriv, u8 *hwaddr)
} }
phash_list = &(pstapriv->sta_hash[index]); phash_list = &(pstapriv->sta_hash[index]);
list_insert_tail(&psta->hash_list, phash_list); list_insert_tail(&psta->hash_list, phash_list);
pstapriv->asoc_sta_count++ ; pstapriv->asoc_sta_count++;
/* For the SMC router, the sequence number of first packet of WPS handshake /* For the SMC router, the sequence number of first packet of WPS handshake
* will be 0. In this case, this packet will be dropped by recv_decache function * will be 0. In this case, this packet will be dropped by recv_decache function
...@@ -149,7 +149,7 @@ struct sta_info *r8712_alloc_stainfo(struct sta_priv *pstapriv, u8 *hwaddr) ...@@ -149,7 +149,7 @@ struct sta_info *r8712_alloc_stainfo(struct sta_priv *pstapriv, u8 *hwaddr)
memcpy(&psta->sta_recvpriv.rxcache.tid_rxseq[i], memcpy(&psta->sta_recvpriv.rxcache.tid_rxseq[i],
&wRxSeqInitialValue, 2); &wRxSeqInitialValue, 2);
/* for A-MPDU Rx reordering buffer control */ /* for A-MPDU Rx reordering buffer control */
for (i = 0; i < 16 ; i++) { for (i = 0; i < 16; i++) {
preorder_ctrl = &psta->recvreorder_ctrl[i]; preorder_ctrl = &psta->recvreorder_ctrl[i];
preorder_ctrl->padapter = pstapriv->padapter; preorder_ctrl->padapter = pstapriv->padapter;
preorder_ctrl->indicate_seq = 0xffff; preorder_ctrl->indicate_seq = 0xffff;
......
...@@ -51,7 +51,7 @@ void _r8712_open_pktfile(_pkt *pktptr, struct pkt_file *pfile) ...@@ -51,7 +51,7 @@ void _r8712_open_pktfile(_pkt *pktptr, struct pkt_file *pfile)
pfile->pkt = pktptr; pfile->pkt = pktptr;
pfile->cur_addr = pfile->buf_start = pktptr->data; pfile->cur_addr = pfile->buf_start = pktptr->data;
pfile->pkt_len = pfile->buf_len = pktptr->len; pfile->pkt_len = pfile->buf_len = pktptr->len;
pfile->cur_buffer = pfile->buf_start ; pfile->cur_buffer = pfile->buf_start;
} }
uint _r8712_pktfile_read(struct pkt_file *pfile, u8 *rmem, uint rlen) uint _r8712_pktfile_read(struct pkt_file *pfile, u8 *rmem, uint rlen)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment