Home
last modified time | relevance | path

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

/linux/drivers/staging/rtl8723bs/hal/
H A Dsdio_ops.c144 __le16 le_tmp; in sdio_read16() local
147 sd_cmd52_read(intfhdl, ftaddr, 2, (u8 *)&le_tmp); in sdio_read16()
149 return le16_to_cpu(le_tmp); in sdio_read16()
162 __le32 le_tmp; in sdio_read32() local
173 err = sd_cmd52_read(intfhdl, ftaddr, 4, (u8 *)&le_tmp); in sdio_read32()
174 return le32_to_cpu(le_tmp); in sdio_read32()
190 memcpy(&le_tmp, tmpbuf + shift, 4); in sdio_read32()
191 val = le32_to_cpu(le_tmp); in sdio_read32()
257 __le16 le_tmp; in sdio_write16() local
260 le_tmp = cpu_to_le16(val); in sdio_write16()
[all …]
/linux/drivers/staging/rtl8723bs/core/
H A Drtw_mlme_ext.c2569 __le16 le_tmp; in issue_auth() local
2609 le_tmp = cpu_to_le16(val16); in issue_auth()
2611 pframe = rtw_set_fixed_ie(pframe, _AUTH_ALGM_NUM_, (unsigned char *)&le_tmp, &(pattrib->pktlen)); in issue_auth()
2615 le_tmp = cpu_to_le16(val16); in issue_auth()
2616 pframe = rtw_set_fixed_ie(pframe, _AUTH_SEQ_NUM_, (unsigned char *)&le_tmp, &(pattrib->pktlen)); in issue_auth()
2620 le_tmp = cpu_to_le16(val16); in issue_auth()
2621 pframe = rtw_set_fixed_ie(pframe, _STATUS_CODE_, (unsigned char *)&le_tmp, &(pattrib->pktlen)); in issue_auth()
2636 le_tmp = cpu_to_le16(val16); in issue_auth()
2649 pframe = rtw_set_fixed_ie(pframe, _AUTH_ALGM_NUM_, (unsigned char *)&le_tmp, &(pattrib->pktlen)); in issue_auth()
2652 le_tmp = cpu_to_le16(pmlmeinfo->auth_seq); in issue_auth()
[all …]
H A Drtw_ieee80211.c368 __le16 le_tmp; in rtw_get_wpa_ie() local
379 memcpy((u8 *)&le_tmp, (pbuf + 6), sizeof(val16)); in rtw_get_wpa_ie()
381 val16 = le16_to_cpu(le_tmp); in rtw_get_wpa_ie()
H A Drtw_security.c1293 __le16 le_tmp; in rtw_BIP_verify() local
1321 memcpy(&le_tmp, p + 2, 2); in rtw_BIP_verify()
1322 keyid = le16_to_cpu(le_tmp); in rtw_BIP_verify()