Lines Matching refs:sdres
108 struct nfc_llcp_sdp_tlv *sdres; in nfc_llcp_build_sdres_tlv() local
111 sdres = kzalloc(sizeof(struct nfc_llcp_sdp_tlv), GFP_KERNEL); in nfc_llcp_build_sdres_tlv()
112 if (sdres == NULL) in nfc_llcp_build_sdres_tlv()
118 sdres->tlv = nfc_llcp_build_tlv(LLCP_TLV_SDRES, value, 2, in nfc_llcp_build_sdres_tlv()
119 &sdres->tlv_len); in nfc_llcp_build_sdres_tlv()
120 if (sdres->tlv == NULL) { in nfc_llcp_build_sdres_tlv()
121 kfree(sdres); in nfc_llcp_build_sdres_tlv()
125 sdres->tid = tid; in nfc_llcp_build_sdres_tlv()
126 sdres->sap = sap; in nfc_llcp_build_sdres_tlv()
128 INIT_HLIST_NODE(&sdres->node); in nfc_llcp_build_sdres_tlv()
130 return sdres; in nfc_llcp_build_sdres_tlv()