summaryrefslogtreecommitdiffstats
path: root/drivers/nfc/st-nci/vendor_cmds.c
diff options
context:
space:
mode:
authorJakub Kicinski <kuba@kernel.org>2022-01-26 11:10:56 -0800
committerDavid S. Miller <davem@davemloft.net>2022-01-27 13:53:26 +0000
commitf7bfd110f168bcd782e1c1125fa44ee251a170f9 (patch)
treee54b3f8fbffec9b53bbaa3149ad645b1f9fa11af /drivers/nfc/st-nci/vendor_cmds.c
parentbd5daba2d02479729526d35de85807aadf6fba20 (diff)
downloadlinux-f7bfd110f168bcd782e1c1125fa44ee251a170f9.tar.gz
linux-f7bfd110f168bcd782e1c1125fa44ee251a170f9.tar.bz2
linux-f7bfd110f168bcd782e1c1125fa44ee251a170f9.zip
nfc: use *_set_vendor_cmds() helpers
NCI and HCI wrappers for nfc_set_vendor_cmds() exist, use them. We could also remove the helpers. It's a coin toss. Signed-off-by: Jakub Kicinski <kuba@kernel.org> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@canonical.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/nfc/st-nci/vendor_cmds.c')
-rw-r--r--drivers/nfc/st-nci/vendor_cmds.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nfc/st-nci/vendor_cmds.c b/drivers/nfc/st-nci/vendor_cmds.c
index 30d2912d1a05..6335d7afca24 100644
--- a/drivers/nfc/st-nci/vendor_cmds.c
+++ b/drivers/nfc/st-nci/vendor_cmds.c
@@ -456,7 +456,7 @@ static const struct nfc_vendor_cmd st_nci_vendor_cmds[] = {
int st_nci_vendor_cmds_init(struct nci_dev *ndev)
{
- return nfc_set_vendor_cmds(ndev->nfc_dev, st_nci_vendor_cmds,
+ return nci_set_vendor_cmds(ndev, st_nci_vendor_cmds,
sizeof(st_nci_vendor_cmds));
}
EXPORT_SYMBOL(st_nci_vendor_cmds_init);