diff options
author | Jakub Kicinski <kuba@kernel.org> | 2020-03-02 21:05:25 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2020-03-03 13:28:49 -0800 |
commit | 88e706d5168b07df4792dbc3d1bc37b83e4bd74d (patch) | |
tree | cf2c63d71b90b286eff37d8721dd127f4f6aeea9 /net/nfc | |
parent | 361d23e41ca6e504033f7e66a03b95788377caae (diff) | |
download | linux-88e706d5168b07df4792dbc3d1bc37b83e4bd74d.tar.bz2 |
nfc: add missing attribute validation for deactivate target
Add missing attribute validation for NFC_ATTR_TARGET_INDEX
to the netlink policy.
Fixes: 4d63adfe12dd ("NFC: Add NFC_CMD_DEACTIVATE_TARGET support")
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/nfc')
-rw-r--r-- | net/nfc/netlink.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/nfc/netlink.c b/net/nfc/netlink.c index 842407a48f96..e988ca486d66 100644 --- a/net/nfc/netlink.c +++ b/net/nfc/netlink.c @@ -32,6 +32,7 @@ static const struct nla_policy nfc_genl_policy[NFC_ATTR_MAX + 1] = { [NFC_ATTR_DEVICE_NAME] = { .type = NLA_STRING, .len = NFC_DEVICE_NAME_MAXSIZE }, [NFC_ATTR_PROTOCOLS] = { .type = NLA_U32 }, + [NFC_ATTR_TARGET_INDEX] = { .type = NLA_U32 }, [NFC_ATTR_COMM_MODE] = { .type = NLA_U8 }, [NFC_ATTR_RF_MODE] = { .type = NLA_U8 }, [NFC_ATTR_DEVICE_POWERED] = { .type = NLA_U8 }, |