Home
last modified time | relevance | path

Searched refs:le_tmp (Results 1 – 8 of 8) sorted by relevance

/drivers/staging/rtl8723bs/hal/
Dsdio_ops.c153 __le16 le_tmp; in sdio_read16() local
156 sd_cmd52_read(intfhdl, ftaddr, 2, (u8 *)&le_tmp); in sdio_read16()
158 return le16_to_cpu(le_tmp); in sdio_read16()
171 __le32 le_tmp; in sdio_read32() local
182 err = sd_cmd52_read(intfhdl, ftaddr, 4, (u8 *)&le_tmp); in sdio_read32()
186 return le32_to_cpu(le_tmp); in sdio_read32()
210 memcpy(&le_tmp, tmpbuf + shift, 4); in sdio_read32()
211 val = le32_to_cpu(le_tmp); in sdio_read32()
277 __le16 le_tmp; in sdio_write16() local
280 le_tmp = cpu_to_le16(val); in sdio_write16()
[all …]
/drivers/staging/rtl8188eu/core/
Drtw_ieee80211.c274 __le16 le_tmp; in rtw_get_wpa_ie() local
288 memcpy((u8 *)&le_tmp, (pbuf + 6), sizeof(val16)); in rtw_get_wpa_ie()
290 val16 = le16_to_cpu(le_tmp); in rtw_get_wpa_ie()
962 __le16 le_tmp; in rtw_get_bcn_info() local
968 memcpy(&le_tmp, rtw_get_capability_from_ie(pnetwork->network.ies), 2); in rtw_get_bcn_info()
969 cap = le16_to_cpu(le_tmp); in rtw_get_bcn_info()
Drtw_mlme_ext.c1438 __le16 le_tmp; in _issue_deauth() local
1468 le_tmp = cpu_to_le16(reason); in _issue_deauth()
1469 pframe = rtw_set_fixed_ie(pframe, _RSON_CODE_, &le_tmp, in _issue_deauth()
1541 __le16 le_tmp; in issue_action_BA() local
1598 le_tmp = cpu_to_le16(BA_para_set); in issue_action_BA()
1599 pframe = rtw_set_fixed_ie(pframe, 2, &(le_tmp), in issue_action_BA()
1603 le_tmp = cpu_to_le16(BA_timeout_value); in issue_action_BA()
1604 pframe = rtw_set_fixed_ie(pframe, 2, &(le_tmp), in issue_action_BA()
1617 le_tmp = cpu_to_le16(BA_starting_seqctrl); in issue_action_BA()
1618 pframe = rtw_set_fixed_ie(pframe, 2, &(le_tmp), in issue_action_BA()
[all …]
/drivers/staging/rtl8723bs/core/
Drtw_mlme_ext.c2975 __le16 le_tmp; in issue_auth() local
3015 le_tmp = cpu_to_le16(val16); in issue_auth()
3017 pframe = rtw_set_fixed_ie(pframe, _AUTH_ALGM_NUM_, (unsigned char *)&le_tmp, &(pattrib->pktlen)); in issue_auth()
3021 le_tmp = cpu_to_le16(val16); in issue_auth()
3022 pframe = rtw_set_fixed_ie(pframe, _AUTH_SEQ_NUM_, (unsigned char *)&le_tmp, &(pattrib->pktlen)); in issue_auth()
3026 le_tmp = cpu_to_le16(val16); in issue_auth()
3027 pframe = rtw_set_fixed_ie(pframe, _STATUS_CODE_, (unsigned char *)&le_tmp, &(pattrib->pktlen)); in issue_auth()
3043 le_tmp = cpu_to_le16(val16); in issue_auth()
3058 pframe = rtw_set_fixed_ie(pframe, _AUTH_ALGM_NUM_, (unsigned char *)&le_tmp, &(pattrib->pktlen)); in issue_auth()
3061 le_tmp = cpu_to_le16(pmlmeinfo->auth_seq); in issue_auth()
[all …]
Drtw_ieee80211.c386 __le16 le_tmp; in rtw_get_wpa_ie() local
398 memcpy((u8 *)&le_tmp, (pbuf + 6), sizeof(val16)); in rtw_get_wpa_ie()
400 val16 = le16_to_cpu(le_tmp); in rtw_get_wpa_ie()
Drtw_security.c1909 __le16 le_tmp; in rtw_BIP_verify() local
1940 memcpy(&le_tmp, p+2, 2); in rtw_BIP_verify()
1941 keyid = le16_to_cpu(le_tmp); in rtw_BIP_verify()
/drivers/staging/rtl8188eu/os_dep/
Dioctl_linux.c99 __le16 le_tmp; in translate_scan() local
162 memcpy(&le_tmp, rtw_get_capability_from_ie(pnetwork->network.ies), 2); in translate_scan()
164 cap = le16_to_cpu(le_tmp); in translate_scan()
/drivers/staging/rtl8723bs/os_dep/
Dioctl_linux.c159 __le16 le_tmp; in translate_scan() local
162 memcpy((u8 *)&le_tmp, rtw_get_capability_from_ie(pnetwork->network.IEs), 2); in translate_scan()
163 cap = le16_to_cpu(le_tmp); in translate_scan()