Lines Matching defs:local
989 struct nfc_llcp_local *local,
999 if (nla_put_u32(msg, NFC_ATTR_DEVICE_INDEX, local->dev->idx) ||
1000 nla_put_u8(msg, NFC_ATTR_LLC_PARAM_LTO, local->lto) ||
1001 nla_put_u8(msg, NFC_ATTR_LLC_PARAM_RW, local->rw) ||
1002 nla_put_u16(msg, NFC_ATTR_LLC_PARAM_MIUX, be16_to_cpu(local->miux)))
1016 struct nfc_llcp_local *local;
1033 local = nfc_llcp_find_local(dev);
1034 if (!local) {
1045 rc = nfc_genl_send_params(msg, local, info->snd_portid, info->snd_seq);
1048 nfc_llcp_local_put(local);
1068 struct nfc_llcp_local *local;
1102 local = nfc_llcp_find_local(dev);
1103 if (!local) {
1114 local->lto = nla_get_u8(info->attrs[NFC_ATTR_LLC_PARAM_LTO]);
1118 local->rw = rw;
1121 local->miux = cpu_to_be16(miux);
1124 nfc_llcp_local_put(local);
1137 struct nfc_llcp_local *local;
1164 local = nfc_llcp_find_local(dev);
1165 if (!local) {
1195 tid = local->sdreq_next_tid++;
1213 rc = nfc_llcp_send_snl_sdreq(local, &sdreq_list, tlvs_len);
1216 nfc_llcp_local_put(local);