Lines Matching refs:sdres
120 struct nfc_llcp_sdp_tlv *sdres; in nfc_llcp_build_sdres_tlv() local
123 sdres = kzalloc(sizeof(struct nfc_llcp_sdp_tlv), GFP_KERNEL); in nfc_llcp_build_sdres_tlv()
124 if (sdres == NULL) in nfc_llcp_build_sdres_tlv()
130 sdres->tlv = nfc_llcp_build_tlv(LLCP_TLV_SDRES, value, 2, in nfc_llcp_build_sdres_tlv()
131 &sdres->tlv_len); in nfc_llcp_build_sdres_tlv()
132 if (sdres->tlv == NULL) { in nfc_llcp_build_sdres_tlv()
133 kfree(sdres); in nfc_llcp_build_sdres_tlv()
137 sdres->tid = tid; in nfc_llcp_build_sdres_tlv()
138 sdres->sap = sap; in nfc_llcp_build_sdres_tlv()
140 INIT_HLIST_NODE(&sdres->node); in nfc_llcp_build_sdres_tlv()
142 return sdres; in nfc_llcp_build_sdres_tlv()