diff options
author | Ilan Elias <ilane@ti.com> | 2012-01-17 11:06:43 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-01-24 14:21:15 -0500 |
commit | d5a2ca60e41fec4ede7b82d3608278523cffe77b (patch) | |
tree | 64faf8e66edaf03fe35b9bd61e8263817a17cca9 /net/nfc/netlink.c | |
parent | bfeb4dbc5cb36ae774fabe7b0e0d559e621a2ccd (diff) | |
download | linux-3.10-d5a2ca60e41fec4ede7b82d3608278523cffe77b.tar.gz linux-3.10-d5a2ca60e41fec4ede7b82d3608278523cffe77b.tar.bz2 linux-3.10-d5a2ca60e41fec4ede7b82d3608278523cffe77b.zip |
NFC: Export new attributes sensb_res and sensf_res
Export new attributes sensb_res for tech B and sensf_res
for tech F in the target info (returned as a response to
NFC_CMD_GET_TARGET).
The max size of the attributes nfcid1, sensb_res and sensf_res
is exported to user space though include/linux/nfc.
Signed-off-by: Ilan Elias <ilane@ti.com>
Acked-by: Samuel Ortiz <sameo@linux.intel.com>
Signed-off-by: John W. Linville <linville@tuxdriver.com>
Diffstat (limited to 'net/nfc/netlink.c')
-rw-r--r-- | net/nfc/netlink.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/net/nfc/netlink.c b/net/nfc/netlink.c index 6989dfa28ee..07f0348aabf 100644 --- a/net/nfc/netlink.c +++ b/net/nfc/netlink.c @@ -70,6 +70,12 @@ static int nfc_genl_send_target(struct sk_buff *msg, struct nfc_target *target, if (target->nfcid1_len > 0) NLA_PUT(msg, NFC_ATTR_TARGET_NFCID1, target->nfcid1_len, target->nfcid1); + if (target->sensb_res_len > 0) + NLA_PUT(msg, NFC_ATTR_TARGET_SENSB_RES, target->sensb_res_len, + target->sensb_res); + if (target->sensf_res_len > 0) + NLA_PUT(msg, NFC_ATTR_TARGET_SENSF_RES, target->sensf_res_len, + target->sensf_res); return genlmsg_end(msg, hdr); |