Home
last modified time | relevance | path

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

/Linux-v5.4/drivers/staging/rtl8723bs/hal/
Dsdio_ops.c160 __le16 le_tmp; in sdio_read16() local
163 sd_cmd52_read(intfhdl, ftaddr, 2, (u8 *)&le_tmp); in sdio_read16()
165 return le16_to_cpu(le_tmp); in sdio_read16()
178 __le32 le_tmp; in sdio_read32() local
189 err = sd_cmd52_read(intfhdl, ftaddr, 4, (u8 *)&le_tmp); in sdio_read32()
193 return le32_to_cpu(le_tmp); in sdio_read32()
217 memcpy(&le_tmp, tmpbuf + shift, 4); in sdio_read32()
218 val = le32_to_cpu(le_tmp); in sdio_read32()
284 __le16 le_tmp; in sdio_write16() local
287 le_tmp = cpu_to_le16(val); in sdio_write16()
[all …]
/Linux-v5.4/drivers/staging/rtl8188eu/core/
Drtw_ieee80211.c277 __le16 le_tmp; in rtw_get_wpa_ie() local
291 memcpy((u8 *)&le_tmp, (pbuf + 6), sizeof(val16)); in rtw_get_wpa_ie()
293 val16 = le16_to_cpu(le_tmp); in rtw_get_wpa_ie()
961 __le16 le_tmp; in rtw_get_bcn_info() local
967 memcpy(&le_tmp, rtw_get_capability_from_ie(pnetwork->network.ies), 2); in rtw_get_bcn_info()
968 cap = le16_to_cpu(le_tmp); in rtw_get_bcn_info()
Drtw_mlme_ext.c1444 __le16 le_tmp; in _issue_deauth() local
1474 le_tmp = cpu_to_le16(reason); in _issue_deauth()
1475 pframe = rtw_set_fixed_ie(pframe, _RSON_CODE_, &le_tmp, in _issue_deauth()
1547 __le16 le_tmp; in issue_action_BA() local
1604 le_tmp = cpu_to_le16(BA_para_set); in issue_action_BA()
1605 pframe = rtw_set_fixed_ie(pframe, 2, &(le_tmp), in issue_action_BA()
1609 le_tmp = cpu_to_le16(BA_timeout_value); in issue_action_BA()
1610 pframe = rtw_set_fixed_ie(pframe, 2, &(le_tmp), in issue_action_BA()
1623 le_tmp = cpu_to_le16(BA_starting_seqctrl); in issue_action_BA()
1624 pframe = rtw_set_fixed_ie(pframe, 2, &(le_tmp), in issue_action_BA()
[all …]
/Linux-v5.4/drivers/staging/rtl8723bs/core/
Drtw_mlme_ext.c2972 __le16 le_tmp; in issue_auth() local
3012 le_tmp = cpu_to_le16(val16); in issue_auth()
3014 pframe = rtw_set_fixed_ie(pframe, _AUTH_ALGM_NUM_, (unsigned char *)&le_tmp, &(pattrib->pktlen)); in issue_auth()
3018 le_tmp = cpu_to_le16(val16); in issue_auth()
3019 pframe = rtw_set_fixed_ie(pframe, _AUTH_SEQ_NUM_, (unsigned char *)&le_tmp, &(pattrib->pktlen)); in issue_auth()
3023 le_tmp = cpu_to_le16(val16); in issue_auth()
3024 pframe = rtw_set_fixed_ie(pframe, _STATUS_CODE_, (unsigned char *)&le_tmp, &(pattrib->pktlen)); in issue_auth()
3040 le_tmp = cpu_to_le16(val16); in issue_auth()
3055 pframe = rtw_set_fixed_ie(pframe, _AUTH_ALGM_NUM_, (unsigned char *)&le_tmp, &(pattrib->pktlen)); in issue_auth()
3058 le_tmp = cpu_to_le16(pmlmeinfo->auth_seq); in issue_auth()
[all …]
Drtw_ieee80211.c385 __le16 le_tmp; in rtw_get_wpa_ie() local
397 memcpy((u8 *)&le_tmp, (pbuf + 6), sizeof(val16)); in rtw_get_wpa_ie()
399 val16 = le16_to_cpu(le_tmp); in rtw_get_wpa_ie()
Drtw_security.c1948 __le16 le_tmp; in rtw_BIP_verify() local
1979 memcpy(&le_tmp, p+2, 2); in rtw_BIP_verify()
1980 keyid = le16_to_cpu(le_tmp); in rtw_BIP_verify()
/Linux-v5.4/drivers/staging/rtl8188eu/os_dep/
Dioctl_linux.c99 __le16 le_tmp; in translate_scan() local
168 memcpy(&le_tmp, rtw_get_capability_from_ie(pnetwork->network.ies), 2); in translate_scan()
170 cap = le16_to_cpu(le_tmp); in translate_scan()
/Linux-v5.4/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()