diff options
author | Robert Dolca <robert.dolca@intel.com> | 2015-10-22 11:11:39 +0200 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2015-10-25 20:28:59 +0100 |
commit | 22e4bd09c401905671f3787a8392d269a0ebfa0d (patch) | |
tree | 017209d05d64f6c910fa78afe601ab34a461126f /drivers/nfc/st-nci | |
parent | NFC: nci: Allow the driver to set handler for core nci ops (diff) | |
download | linux-22e4bd09c401905671f3787a8392d269a0ebfa0d.tar.xz linux-22e4bd09c401905671f3787a8392d269a0ebfa0d.zip |
NFC: nci: rename nci_prop_ops to nci_driver_ops
Initially it was used to create hooks in the driver for
proprietary operations. Currently it is being used for hooks
for both proprietary and generic operations.
Signed-off-by: Robert Dolca <robert.dolca@intel.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/nfc/st-nci')
-rw-r--r-- | drivers/nfc/st-nci/core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/nfc/st-nci/core.c b/drivers/nfc/st-nci/core.c index 8d1fdd2ee498..5443caa0d55e 100644 --- a/drivers/nfc/st-nci/core.c +++ b/drivers/nfc/st-nci/core.c @@ -98,7 +98,7 @@ static int st_nci_prop_rsp_packet(struct nci_dev *ndev, return 0; } -static struct nci_prop_ops st_nci_prop_ops[] = { +static struct nci_driver_ops st_nci_prop_ops[] = { { .opcode = nci_opcode_pack(NCI_GID_PROPRIETARY, ST_NCI_CORE_PROP), |