Fix the following checkpatch.pl spacing errors/warnings: CHECK: No space is necessary after a cast WARNING: please, no spaces at the start of a line WARNING: please, no spaces at the start of a line ERROR: space prohibited after that open parenthesis '(' ERROR: space prohibited before that close parenthesis ')' ERROR: exactly one space required after that #ifdef ERROR: space prohibited after that '&' (ctx:WxW) Signed-off-by: Carlos Maiolino <cmaiolino28@xxxxxxxxx> --- drivers/staging/ks7010/ks_hostif.c | 202 ++++++++++++++++++------------------- 1 file changed, 101 insertions(+), 101 deletions(-) diff --git a/drivers/staging/ks7010/ks_hostif.c b/drivers/staging/ks7010/ks_hostif.c index e0a5eda..7a6cac2 100644 --- a/drivers/staging/ks7010/ks_hostif.c +++ b/drivers/staging/ks7010/ks_hostif.c @@ -23,11 +23,11 @@ /* macro */ #define inc_smeqhead(priv) \ - ( priv->sme_i.qhead = (priv->sme_i.qhead + 1) % SME_EVENT_BUFF_SIZE ) + (priv->sme_i.qhead = (priv->sme_i.qhead + 1) % SME_EVENT_BUFF_SIZE) #define inc_smeqtail(priv) \ - ( priv->sme_i.qtail = (priv->sme_i.qtail + 1) % SME_EVENT_BUFF_SIZE ) + (priv->sme_i.qtail = (priv->sme_i.qtail + 1) % SME_EVENT_BUFF_SIZE) #define cnt_smeqbody(priv) \ - (((priv->sme_i.qtail + SME_EVENT_BUFF_SIZE) - (priv->sme_i.qhead)) % SME_EVENT_BUFF_SIZE ) + (((priv->sme_i.qtail + SME_EVENT_BUFF_SIZE) - (priv->sme_i.qhead)) % SME_EVENT_BUFF_SIZE) #define KS_WLAN_MEM_FLAG (GFP_ATOMIC) @@ -763,7 +763,7 @@ void hostif_sleep_confirm(struct ks_wlan_private *priv) static void hostif_start_confirm(struct ks_wlan_private *priv) { -#ifdef WPS +#ifdef WPS union iwreq_data wrqu; wrqu.data.length = 0; wrqu.data.flags = 0; @@ -1238,37 +1238,37 @@ int hostif_data_request(struct ks_wlan_private *priv, struct sk_buff *packet) && !(priv->wpa.key[1].key_len) && !(priv->wpa.key[2].key_len) && !(priv->wpa.key[3].key_len)) { - pp->auth_type = cpu_to_le16((uint16_t) TYPE_AUTH); /* no encryption */ + pp->auth_type = cpu_to_le16((uint16_t)TYPE_AUTH); /* no encryption */ } else { if (priv->wpa.pairwise_suite == IW_AUTH_CIPHER_TKIP) { - MichaelMICFunction(&michel_mic, (uint8_t *) priv->wpa.key[0].tx_mic_key, (uint8_t *) & pp->data[0], (int)packet_len, (uint8_t) 0, /* priority */ - (uint8_t *) michel_mic. + MichaelMICFunction(&michel_mic, (uint8_t *)priv->wpa.key[0].tx_mic_key, (uint8_t *)&pp->data[0], (int)packet_len, (uint8_t)0, /* priority */ + (uint8_t *)michel_mic. Result); memcpy(p, michel_mic.Result, 8); length += 8; packet_len += 8; p += 8; pp->auth_type = - cpu_to_le16((uint16_t) TYPE_DATA); + cpu_to_le16((uint16_t)TYPE_DATA); } else if (priv->wpa.pairwise_suite == IW_AUTH_CIPHER_CCMP) { pp->auth_type = - cpu_to_le16((uint16_t) TYPE_DATA); + cpu_to_le16((uint16_t)TYPE_DATA); } } } else { if (eth_proto == ETHER_PROTOCOL_TYPE_EAP) - pp->auth_type = cpu_to_le16((uint16_t) TYPE_AUTH); + pp->auth_type = cpu_to_le16((uint16_t)TYPE_AUTH); else - pp->auth_type = cpu_to_le16((uint16_t) TYPE_DATA); + pp->auth_type = cpu_to_le16((uint16_t)TYPE_DATA); } /* header value set */ pp->header.size = cpu_to_le16((uint16_t) (sizeof(*pp) - sizeof(pp->header.size) + packet_len)); - pp->header.event = cpu_to_le16((uint16_t) HIF_DATA_REQ); + pp->header.event = cpu_to_le16((uint16_t)HIF_DATA_REQ); /* tx request */ result = @@ -1311,9 +1311,9 @@ void hostif_mib_get_request(struct ks_wlan_private *priv, return; } pp->header.size = - cpu_to_le16((uint16_t) (sizeof(*pp) - sizeof(pp->header.size))); - pp->header.event = cpu_to_le16((uint16_t) HIF_MIB_GET_REQ); - pp->mib_attribute = cpu_to_le32((uint32_t) mib_attribute); + cpu_to_le16((uint16_t)(sizeof(*pp) - sizeof(pp->header.size))); + pp->header.event = cpu_to_le16((uint16_t)HIF_MIB_GET_REQ); + pp->mib_attribute = cpu_to_le32((uint32_t)mib_attribute); /* send to device request */ ps_confirm_wait_inc(priv); @@ -1344,10 +1344,10 @@ void hostif_mib_set_request(struct ks_wlan_private *priv, pp->header.size = cpu_to_le16((uint16_t) (sizeof(*pp) - sizeof(pp->header.size) + size)); - pp->header.event = cpu_to_le16((uint16_t) HIF_MIB_SET_REQ); - pp->mib_attribute = cpu_to_le32((uint32_t) mib_attribute); - pp->mib_value.size = cpu_to_le16((uint16_t) size); - pp->mib_value.type = cpu_to_le16((uint16_t) type); + pp->header.event = cpu_to_le16((uint16_t)HIF_MIB_SET_REQ); + pp->mib_attribute = cpu_to_le32((uint32_t)mib_attribute); + pp->mib_value.size = cpu_to_le16((uint16_t)size); + pp->mib_value.type = cpu_to_le16((uint16_t)type); memcpy(&pp->mib_value.body, vp, size); /* send to device request */ @@ -1370,9 +1370,9 @@ void hostif_start_request(struct ks_wlan_private *priv, unsigned char mode) return; } pp->header.size = - cpu_to_le16((uint16_t) (sizeof(*pp) - sizeof(pp->header.size))); - pp->header.event = cpu_to_le16((uint16_t) HIF_START_REQ); - pp->mode = cpu_to_le16((uint16_t) mode); + cpu_to_le16((uint16_t)(sizeof(*pp) - sizeof(pp->header.size))); + pp->header.event = cpu_to_le16((uint16_t)HIF_START_REQ); + pp->mode = cpu_to_le16((uint16_t)mode); /* send to device request */ ps_confirm_wait_inc(priv); @@ -1398,12 +1398,12 @@ void hostif_ps_adhoc_set_request(struct ks_wlan_private *priv) } memset(pp, 0, sizeof(*pp)); pp->header.size = - cpu_to_le16((uint16_t) (sizeof(*pp) - sizeof(pp->header.size))); - pp->header.event = cpu_to_le16((uint16_t) HIF_PS_ADH_SET_REQ); - pp->phy_type = cpu_to_le16((uint16_t) (priv->reg.phy_type)); - pp->cts_mode = cpu_to_le16((uint16_t) (priv->reg.cts_mode)); - pp->scan_type = cpu_to_le16((uint16_t) (priv->reg.scan_type)); - pp->channel = cpu_to_le16((uint16_t) (priv->reg.channel)); + cpu_to_le16((uint16_t)(sizeof(*pp) - sizeof(pp->header.size))); + pp->header.event = cpu_to_le16((uint16_t)HIF_PS_ADH_SET_REQ); + pp->phy_type = cpu_to_le16((uint16_t)(priv->reg.phy_type)); + pp->cts_mode = cpu_to_le16((uint16_t)(priv->reg.cts_mode)); + pp->scan_type = cpu_to_le16((uint16_t)(priv->reg.scan_type)); + pp->channel = cpu_to_le16((uint16_t)(priv->reg.channel)); pp->rate_set.size = priv->reg.rate_set.size; memcpy(&pp->rate_set.body[0], &priv->reg.rate_set.body[0], priv->reg.rate_set.size); @@ -1440,11 +1440,11 @@ void hostif_infrastructure_set_request(struct ks_wlan_private *priv) return; } pp->header.size = - cpu_to_le16((uint16_t) (sizeof(*pp) - sizeof(pp->header.size))); - pp->header.event = cpu_to_le16((uint16_t) HIF_INFRA_SET_REQ); - pp->phy_type = cpu_to_le16((uint16_t) (priv->reg.phy_type)); - pp->cts_mode = cpu_to_le16((uint16_t) (priv->reg.cts_mode)); - pp->scan_type = cpu_to_le16((uint16_t) (priv->reg.scan_type)); + cpu_to_le16((uint16_t)(sizeof(*pp) - sizeof(pp->header.size))); + pp->header.event = cpu_to_le16((uint16_t)HIF_INFRA_SET_REQ); + pp->phy_type = cpu_to_le16((uint16_t)(priv->reg.phy_type)); + pp->cts_mode = cpu_to_le16((uint16_t)(priv->reg.cts_mode)); + pp->scan_type = cpu_to_le16((uint16_t)(priv->reg.scan_type)); pp->rate_set.size = priv->reg.rate_set.size; memcpy(&pp->rate_set.body[0], &priv->reg.rate_set.body[0], @@ -1462,10 +1462,10 @@ void hostif_infrastructure_set_request(struct ks_wlan_private *priv) capability |= BSS_CAP_SHORT_SLOT_TIME; /* ShortSlotTime support */ capability &= ~(BSS_CAP_DSSS_OFDM); /* DSSS OFDM not support */ } - pp->capability = cpu_to_le16((uint16_t) capability); + pp->capability = cpu_to_le16((uint16_t)capability); pp->beacon_lost_count = - cpu_to_le16((uint16_t) (priv->reg.beacon_lost_count)); - pp->auth_type = cpu_to_le16((uint16_t) (priv->reg.authenticate_type)); + cpu_to_le16((uint16_t)(priv->reg.beacon_lost_count)); + pp->auth_type = cpu_to_le16((uint16_t)(priv->reg.authenticate_type)); pp->channel_list.body[0] = 1; pp->channel_list.body[1] = 8; @@ -1506,11 +1506,11 @@ static void hostif_infrastructure_set2_request(struct ks_wlan_private *priv) return; } pp->header.size = - cpu_to_le16((uint16_t) (sizeof(*pp) - sizeof(pp->header.size))); - pp->header.event = cpu_to_le16((uint16_t) HIF_INFRA_SET2_REQ); - pp->phy_type = cpu_to_le16((uint16_t) (priv->reg.phy_type)); - pp->cts_mode = cpu_to_le16((uint16_t) (priv->reg.cts_mode)); - pp->scan_type = cpu_to_le16((uint16_t) (priv->reg.scan_type)); + cpu_to_le16((uint16_t)(sizeof(*pp) - sizeof(pp->header.size))); + pp->header.event = cpu_to_le16((uint16_t)HIF_INFRA_SET2_REQ); + pp->phy_type = cpu_to_le16((uint16_t)(priv->reg.phy_type)); + pp->cts_mode = cpu_to_le16((uint16_t)(priv->reg.cts_mode)); + pp->scan_type = cpu_to_le16((uint16_t)(priv->reg.scan_type)); pp->rate_set.size = priv->reg.rate_set.size; memcpy(&pp->rate_set.body[0], &priv->reg.rate_set.body[0], @@ -1528,10 +1528,10 @@ static void hostif_infrastructure_set2_request(struct ks_wlan_private *priv) capability |= BSS_CAP_SHORT_SLOT_TIME; /* ShortSlotTime support */ capability &= ~(BSS_CAP_DSSS_OFDM); /* DSSS OFDM not support */ } - pp->capability = cpu_to_le16((uint16_t) capability); + pp->capability = cpu_to_le16((uint16_t)capability); pp->beacon_lost_count = - cpu_to_le16((uint16_t) (priv->reg.beacon_lost_count)); - pp->auth_type = cpu_to_le16((uint16_t) (priv->reg.authenticate_type)); + cpu_to_le16((uint16_t)(priv->reg.beacon_lost_count)); + pp->auth_type = cpu_to_le16((uint16_t)(priv->reg.authenticate_type)); pp->channel_list.body[0] = 1; pp->channel_list.body[1] = 8; @@ -1576,12 +1576,12 @@ void hostif_adhoc_set_request(struct ks_wlan_private *priv) } memset(pp, 0, sizeof(*pp)); pp->header.size = - cpu_to_le16((uint16_t) (sizeof(*pp) - sizeof(pp->header.size))); - pp->header.event = cpu_to_le16((uint16_t) HIF_ADH_SET_REQ); - pp->phy_type = cpu_to_le16((uint16_t) (priv->reg.phy_type)); - pp->cts_mode = cpu_to_le16((uint16_t) (priv->reg.cts_mode)); - pp->scan_type = cpu_to_le16((uint16_t) (priv->reg.scan_type)); - pp->channel = cpu_to_le16((uint16_t) (priv->reg.channel)); + cpu_to_le16((uint16_t)(sizeof(*pp) - sizeof(pp->header.size))); + pp->header.event = cpu_to_le16((uint16_t)HIF_ADH_SET_REQ); + pp->phy_type = cpu_to_le16((uint16_t)(priv->reg.phy_type)); + pp->cts_mode = cpu_to_le16((uint16_t)(priv->reg.cts_mode)); + pp->scan_type = cpu_to_le16((uint16_t)(priv->reg.scan_type)); + pp->channel = cpu_to_le16((uint16_t)(priv->reg.channel)); pp->rate_set.size = priv->reg.rate_set.size; memcpy(&pp->rate_set.body[0], &priv->reg.rate_set.body[0], priv->reg.rate_set.size); @@ -1598,7 +1598,7 @@ void hostif_adhoc_set_request(struct ks_wlan_private *priv) capability |= BSS_CAP_SHORT_SLOT_TIME; /* ShortSlotTime support */ capability &= ~(BSS_CAP_DSSS_OFDM); /* DSSS OFDM not support */ } - pp->capability = cpu_to_le16((uint16_t) capability); + pp->capability = cpu_to_le16((uint16_t)capability); /* send to device request */ ps_confirm_wait_inc(priv); @@ -1621,11 +1621,11 @@ void hostif_adhoc_set2_request(struct ks_wlan_private *priv) } memset(pp, 0, sizeof(*pp)); pp->header.size = - cpu_to_le16((uint16_t) (sizeof(*pp) - sizeof(pp->header.size))); - pp->header.event = cpu_to_le16((uint16_t) HIF_ADH_SET_REQ); - pp->phy_type = cpu_to_le16((uint16_t) (priv->reg.phy_type)); - pp->cts_mode = cpu_to_le16((uint16_t) (priv->reg.cts_mode)); - pp->scan_type = cpu_to_le16((uint16_t) (priv->reg.scan_type)); + cpu_to_le16((uint16_t)(sizeof(*pp) - sizeof(pp->header.size))); + pp->header.event = cpu_to_le16((uint16_t)HIF_ADH_SET_REQ); + pp->phy_type = cpu_to_le16((uint16_t)(priv->reg.phy_type)); + pp->cts_mode = cpu_to_le16((uint16_t)(priv->reg.cts_mode)); + pp->scan_type = cpu_to_le16((uint16_t)(priv->reg.scan_type)); pp->rate_set.size = priv->reg.rate_set.size; memcpy(&pp->rate_set.body[0], &priv->reg.rate_set.body[0], priv->reg.rate_set.size); @@ -1642,7 +1642,7 @@ void hostif_adhoc_set2_request(struct ks_wlan_private *priv) capability |= BSS_CAP_SHORT_SLOT_TIME; /* ShortSlotTime support */ capability &= ~(BSS_CAP_DSSS_OFDM); /* DSSS OFDM not support */ } - pp->capability = cpu_to_le16((uint16_t) capability); + pp->capability = cpu_to_le16((uint16_t)capability); pp->channel_list.body[0] = priv->reg.channel; pp->channel_list.size = 1; @@ -1667,8 +1667,8 @@ void hostif_stop_request(struct ks_wlan_private *priv) return; } pp->header.size = - cpu_to_le16((uint16_t) (sizeof(*pp) - sizeof(pp->header.size))); - pp->header.event = cpu_to_le16((uint16_t) HIF_STOP_REQ); + cpu_to_le16((uint16_t)(sizeof(*pp) - sizeof(pp->header.size))); + pp->header.event = cpu_to_le16((uint16_t)HIF_STOP_REQ); /* send to device request */ ps_confirm_wait_inc(priv); @@ -1689,14 +1689,14 @@ void hostif_phy_information_request(struct ks_wlan_private *priv) return; } pp->header.size = - cpu_to_le16((uint16_t) (sizeof(*pp) - sizeof(pp->header.size))); - pp->header.event = cpu_to_le16((uint16_t) HIF_PHY_INFO_REQ); + cpu_to_le16((uint16_t)(sizeof(*pp) - sizeof(pp->header.size))); + pp->header.event = cpu_to_le16((uint16_t)HIF_PHY_INFO_REQ); if (priv->reg.phy_info_timer) { - pp->type = cpu_to_le16((uint16_t) TIME_TYPE); - pp->time = cpu_to_le16((uint16_t) (priv->reg.phy_info_timer)); + pp->type = cpu_to_le16((uint16_t)TIME_TYPE); + pp->time = cpu_to_le16((uint16_t)(priv->reg.phy_info_timer)); } else { - pp->type = cpu_to_le16((uint16_t) NORMAL_TYPE); - pp->time = cpu_to_le16((uint16_t) 0); + pp->type = cpu_to_le16((uint16_t)NORMAL_TYPE); + pp->time = cpu_to_le16((uint16_t)0); } /* send to device request */ @@ -1720,11 +1720,11 @@ void hostif_power_mngmt_request(struct ks_wlan_private *priv, return; } pp->header.size = - cpu_to_le16((uint16_t) (sizeof(*pp) - sizeof(pp->header.size))); - pp->header.event = cpu_to_le16((uint16_t) HIF_POWERMGT_REQ); - pp->mode = cpu_to_le32((uint32_t) mode); - pp->wake_up = cpu_to_le32((uint32_t) wake_up); - pp->receiveDTIMs = cpu_to_le32((uint32_t) receiveDTIMs); + cpu_to_le16((uint16_t)(sizeof(*pp) - sizeof(pp->header.size))); + pp->header.event = cpu_to_le16((uint16_t)HIF_POWERMGT_REQ); + pp->mode = cpu_to_le32((uint32_t)mode); + pp->wake_up = cpu_to_le32((uint32_t)wake_up); + pp->receiveDTIMs = cpu_to_le32((uint32_t)receiveDTIMs); /* send to device request */ ps_confirm_wait_inc(priv); @@ -1748,7 +1748,7 @@ void hostif_sleep_request(struct ks_wlan_private *priv, unsigned long mode) pp->header.size = cpu_to_le16((uint16_t) (sizeof(*pp) - sizeof(pp->header.size))); - pp->header.event = cpu_to_le16((uint16_t) HIF_SLEEP_REQ); + pp->header.event = cpu_to_le16((uint16_t)HIF_SLEEP_REQ); /* send to device request */ ps_confirm_wait_inc(priv); @@ -1779,12 +1779,12 @@ void hostif_bss_scan_request(struct ks_wlan_private *priv, return; } pp->header.size = - cpu_to_le16((uint16_t) (sizeof(*pp) - sizeof(pp->header.size))); - pp->header.event = cpu_to_le16((uint16_t) HIF_SCAN_REQ); + cpu_to_le16((uint16_t)(sizeof(*pp) - sizeof(pp->header.size))); + pp->header.event = cpu_to_le16((uint16_t)HIF_SCAN_REQ); pp->scan_type = scan_type; - pp->ch_time_min = cpu_to_le32((uint32_t) 110); /* default value */ - pp->ch_time_max = cpu_to_le32((uint32_t) 130); /* default value */ + pp->ch_time_min = cpu_to_le32((uint32_t)110); /* default value */ + pp->ch_time_max = cpu_to_le32((uint32_t)130); /* default value */ pp->channel_list.body[0] = 1; pp->channel_list.body[1] = 8; pp->channel_list.body[2] = 2; @@ -1835,10 +1835,10 @@ void hostif_mic_failure_request(struct ks_wlan_private *priv, return; } pp->header.size = - cpu_to_le16((uint16_t) (sizeof(*pp) - sizeof(pp->header.size))); - pp->header.event = cpu_to_le16((uint16_t) HIF_MIC_FAILURE_REQ); - pp->failure_count = cpu_to_le16((uint16_t) failure_count); - pp->timer = cpu_to_le16((uint16_t) timer); + cpu_to_le16((uint16_t)(sizeof(*pp) - sizeof(pp->header.size))); + pp->header.event = cpu_to_le16((uint16_t)HIF_MIC_FAILURE_REQ); + pp->failure_count = cpu_to_le16((uint16_t)failure_count); + pp->timer = cpu_to_le16((uint16_t)timer); /* send to device request */ ps_confirm_wait_inc(priv); @@ -1890,7 +1890,7 @@ void hostif_sme_set_wep(struct ks_wlan_private *priv, int type) uint32_t val; switch (type) { case SME_WEP_INDEX_REQUEST: - val = cpu_to_le32((uint32_t) (priv->reg.wep_index)); + val = cpu_to_le32((uint32_t)(priv->reg.wep_index)); hostif_mib_set_request(priv, DOT11_WEP_DEFAULT_KEY_ID, sizeof(val), MIB_VALUE_TYPE_INT, &val); break; @@ -1927,7 +1927,7 @@ void hostif_sme_set_wep(struct ks_wlan_private *priv, int type) &priv->reg.wep_key[3].val[0]); break; case SME_WEP_FLAG_REQUEST: - val = cpu_to_le32((uint32_t) (priv->reg.privacy_invoked)); + val = cpu_to_le32((uint32_t)(priv->reg.privacy_invoked)); hostif_mib_set_request(priv, DOT11_PRIVACY_INVOKED, sizeof(val), MIB_VALUE_TYPE_BOOL, &val); break; @@ -1957,7 +1957,7 @@ void hostif_sme_set_rsn(struct ks_wlan_private *priv, int type) switch (type) { case SME_RSN_UCAST_REQUEST: - wpa_suite.size = cpu_to_le16((uint16_t) 1); + wpa_suite.size = cpu_to_le16((uint16_t)1); switch (priv->wpa.pairwise_suite) { case IW_AUTH_CIPHER_NONE: if (priv->wpa.version == IW_AUTH_WPA_VERSION_WPA2) @@ -2055,7 +2055,7 @@ void hostif_sme_set_rsn(struct ks_wlan_private *priv, int type) &wpa_suite.suite[0][0]); break; case SME_RSN_AUTH_REQUEST: - wpa_suite.size = cpu_to_le16((uint16_t) 1); + wpa_suite.size = cpu_to_le16((uint16_t)1); switch (priv->wpa.key_mgmt_suite) { case IW_AUTH_KEY_MGMT_802_1X: if (priv->wpa.version == IW_AUTH_WPA_VERSION_WPA2) @@ -2099,23 +2099,23 @@ void hostif_sme_set_rsn(struct ks_wlan_private *priv, int type) MIB_VALUE_TYPE_OSTRING, &wpa_suite); break; case SME_RSN_ENABLED_REQUEST: - val = cpu_to_le32((uint32_t) (priv->wpa.rsn_enabled)); + val = cpu_to_le32((uint32_t)(priv->wpa.rsn_enabled)); hostif_mib_set_request(priv, DOT11_RSN_ENABLED, sizeof(val), MIB_VALUE_TYPE_BOOL, &val); break; case SME_RSN_MODE_REQUEST: if (priv->wpa.version == IW_AUTH_WPA_VERSION_WPA2) { rsn_mode.rsn_mode = - cpu_to_le32((uint32_t) RSN_MODE_WPA2); - rsn_mode.rsn_capability = cpu_to_le16((uint16_t) 0); + cpu_to_le32((uint32_t)RSN_MODE_WPA2); + rsn_mode.rsn_capability = cpu_to_le16((uint16_t)0); } else if (priv->wpa.version == IW_AUTH_WPA_VERSION_WPA) { rsn_mode.rsn_mode = - cpu_to_le32((uint32_t) RSN_MODE_WPA); - rsn_mode.rsn_capability = cpu_to_le16((uint16_t) 0); + cpu_to_le32((uint32_t)RSN_MODE_WPA); + rsn_mode.rsn_capability = cpu_to_le16((uint16_t)0); } else { rsn_mode.rsn_mode = - cpu_to_le32((uint32_t) RSN_MODE_NONE); - rsn_mode.rsn_capability = cpu_to_le16((uint16_t) 0); + cpu_to_le32((uint32_t)RSN_MODE_NONE); + rsn_mode.rsn_capability = cpu_to_le16((uint16_t)0); } hostif_mib_set_request(priv, LOCAL_RSN_MODE, sizeof(rsn_mode), MIB_VALUE_TYPE_OSTRING, &rsn_mode); @@ -2210,7 +2210,7 @@ void hostif_sme_mode_setup(struct ks_wlan_private *priv) break; case MODE_INFRASTRUCTURE: /* Infrastructure mode */ - if (!is_valid_ether_addr((u8 *) priv->reg.bssid)) { + if (!is_valid_ether_addr((u8 *)priv->reg.bssid)) { hostif_infrastructure_set_request(priv); } else { hostif_infrastructure_set2_request(priv); @@ -2223,7 +2223,7 @@ void hostif_sme_mode_setup(struct ks_wlan_private *priv) break; case MODE_ADHOC: /* IEEE802.11 Ad-Hoc mode */ - if (!is_valid_ether_addr((u8 *) priv->reg.bssid)) { + if (!is_valid_ether_addr((u8 *)priv->reg.bssid)) { hostif_adhoc_set_request(priv); } else { hostif_adhoc_set2_request(priv); @@ -2259,13 +2259,13 @@ void hostif_sme_multicast_set(struct ks_wlan_private *priv) memset(set_address, 0, NIC_MAX_MCAST_LIST * ETH_ALEN); if (dev->flags & IFF_PROMISC) { - filter_type = cpu_to_le32((uint32_t) MCAST_FILTER_PROMISC); + filter_type = cpu_to_le32((uint32_t)MCAST_FILTER_PROMISC); hostif_mib_set_request(priv, LOCAL_MULTICAST_FILTER, sizeof(filter_type), MIB_VALUE_TYPE_BOOL, &filter_type); } else if ((netdev_mc_count(dev) > NIC_MAX_MCAST_LIST) || (dev->flags & IFF_ALLMULTI)) { - filter_type = cpu_to_le32((uint32_t) MCAST_FILTER_MCASTALL); + filter_type = cpu_to_le32((uint32_t)MCAST_FILTER_MCASTALL); hostif_mib_set_request(priv, LOCAL_MULTICAST_FILTER, sizeof(filter_type), MIB_VALUE_TYPE_BOOL, &filter_type); @@ -2284,7 +2284,7 @@ void hostif_sme_multicast_set(struct ks_wlan_private *priv) &set_address[0]); } else { filter_type = - cpu_to_le32((uint32_t) MCAST_FILTER_MCAST); + cpu_to_le32((uint32_t)MCAST_FILTER_MCAST); priv->sme_i.sme_flag |= SME_MULTICAST; hostif_mib_set_request(priv, LOCAL_MULTICAST_FILTER, sizeof(filter_type), @@ -2366,12 +2366,12 @@ void hostif_sme_set_key(struct ks_wlan_private *priv, int type) uint32_t val; switch (type) { case SME_SET_FLAG: - val = cpu_to_le32((uint32_t) (priv->reg.privacy_invoked)); + val = cpu_to_le32((uint32_t)(priv->reg.privacy_invoked)); hostif_mib_set_request(priv, DOT11_PRIVACY_INVOKED, sizeof(val), MIB_VALUE_TYPE_BOOL, &val); break; case SME_SET_TXKEY: - val = cpu_to_le32((uint32_t) (priv->wpa.txkey)); + val = cpu_to_le32((uint32_t)(priv->wpa.txkey)); hostif_mib_set_request(priv, DOT11_WEP_DEFAULT_KEY_ID, sizeof(val), MIB_VALUE_TYPE_INT, &val); break; @@ -2443,7 +2443,7 @@ void hostif_sme_set_pmksa(struct ks_wlan_private *priv) i++; } } - pmkcache.size = cpu_to_le16((uint16_t) (priv->pmklist.size)); + pmkcache.size = cpu_to_le16((uint16_t)(priv->pmklist.size)); hostif_mib_set_request(priv, LOCAL_PMK, sizeof(priv->pmklist.size) + (ETH_ALEN + IW_PMKID_LEN) * @@ -2517,12 +2517,12 @@ void hostif_sme_execute(struct ks_wlan_private *priv, int event) hostif_stop_request(priv); break; case SME_RTS_THRESHOLD_REQUEST: - val = cpu_to_le32((uint32_t) (priv->reg.rts)); + val = cpu_to_le32((uint32_t)(priv->reg.rts)); hostif_mib_set_request(priv, DOT11_RTS_THRESHOLD, sizeof(val), MIB_VALUE_TYPE_INT, &val); break; case SME_FRAGMENTATION_THRESHOLD_REQUEST: - val = cpu_to_le32((uint32_t) (priv->reg.fragment)); + val = cpu_to_le32((uint32_t)(priv->reg.fragment)); hostif_mib_set_request(priv, DOT11_FRAGMENTATION_THRESHOLD, sizeof(val), MIB_VALUE_TYPE_INT, &val); break; @@ -2600,7 +2600,7 @@ void hostif_sme_execute(struct ks_wlan_private *priv, int event) hostif_sme_sleep_set(priv); break; case SME_SET_REGION: - val = cpu_to_le32((uint32_t) (priv->region)); + val = cpu_to_le32((uint32_t)(priv->region)); hostif_mib_set_request(priv, LOCAL_REGION, sizeof(val), MIB_VALUE_TYPE_INT, &val); break; -- 2.7.4 _______________________________________________ devel mailing list devel@xxxxxxxxxxxxxxxxxxxxxx http://driverdev.linuxdriverproject.org/mailman/listinfo/driverdev-devel