Home
last modified time | relevance | path

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

/openbmc/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 …]
/openbmc/linux/drivers/staging/rtl8723bs/core/
H A Drtw_mlme_ext.c2597 __le16 le_tmp; in issue_auth() local
2637 le_tmp = cpu_to_le16(val16); in issue_auth()
2639 pframe = rtw_set_fixed_ie(pframe, _AUTH_ALGM_NUM_, (unsigned char *)&le_tmp, &(pattrib->pktlen)); in issue_auth()
2643 le_tmp = cpu_to_le16(val16); in issue_auth()
2644 pframe = rtw_set_fixed_ie(pframe, _AUTH_SEQ_NUM_, (unsigned char *)&le_tmp, &(pattrib->pktlen)); in issue_auth()
2648 le_tmp = cpu_to_le16(val16); in issue_auth()
2649 pframe = rtw_set_fixed_ie(pframe, _STATUS_CODE_, (unsigned char *)&le_tmp, &(pattrib->pktlen)); in issue_auth()
2664 le_tmp = cpu_to_le16(val16); in issue_auth()
2677 pframe = rtw_set_fixed_ie(pframe, _AUTH_ALGM_NUM_, (unsigned char *)&le_tmp, &(pattrib->pktlen)); in issue_auth()
2680 le_tmp = cpu_to_le16(pmlmeinfo->auth_seq); in issue_auth()
[all …]
H A Drtw_ieee80211.c361 __le16 le_tmp; in rtw_get_wpa_ie() local
372 memcpy((u8 *)&le_tmp, (pbuf + 6), sizeof(val16)); in rtw_get_wpa_ie()
374 val16 = le16_to_cpu(le_tmp); in rtw_get_wpa_ie()
H A Drtw_security.c1382 __le16 le_tmp; in rtw_BIP_verify() local
1411 memcpy(&le_tmp, p+2, 2); in rtw_BIP_verify()
1412 keyid = le16_to_cpu(le_tmp); in rtw_BIP_verify()