nfc: Fix potential resource leaks
authorMiaoqian Lin <linmq006@gmail.com>
Fri, 23 Dec 2022 07:37:18 +0000 (11:37 +0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 12 Jan 2023 10:59:10 +0000 (11:59 +0100)
commitb63bc2db244c1b57e36f16ea5f2a1becda413f68
tree57e2618668bd7b8e2bb72eaca550abef79ab6520
parent945e58bdaf6faf6e3f957d182244fa830acddab4
nfc: Fix potential resource leaks

[ Upstream commit df49908f3c52d211aea5e2a14a93bbe67a2cb3af ]

nfc_get_device() take reference for the device, add missing
nfc_put_device() to release it when not need anymore.
Also fix the style warnning by use error EOPNOTSUPP instead of
ENOTSUPP.

Fixes: 5ce3f32b5264 ("NFC: netlink: SE API implementation")
Fixes: 29e76924cf08 ("nfc: netlink: Add capability to reply to vendor_cmd with data")
Signed-off-by: Miaoqian Lin <linmq006@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/nfc/netlink.c