diff options
author | Robert Dolca <robert.dolca@intel.com> | 2015-10-22 12:11:39 +0300 |
---|---|---|
committer | Samuel Ortiz <sameo@linux.intel.com> | 2015-10-25 20:28:59 +0100 |
commit | 22e4bd09c401905671f3787a8392d269a0ebfa0d (patch) | |
tree | 017209d05d64f6c910fa78afe601ab34a461126f /include/net/nfc | |
parent | 0a97a3cba298fd989802bf34541c94b6488c3834 (diff) | |
download | linux-22e4bd09c401905671f3787a8392d269a0ebfa0d.tar.gz linux-22e4bd09c401905671f3787a8392d269a0ebfa0d.tar.bz2 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 'include/net/nfc')
-rw-r--r-- | include/net/nfc/nci_core.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/net/nfc/nci_core.h b/include/net/nfc/nci_core.h index d5a1caae9fd9..5daf0042261e 100644 --- a/include/net/nfc/nci_core.h +++ b/include/net/nfc/nci_core.h @@ -67,7 +67,7 @@ enum nci_state { struct nci_dev; -struct nci_prop_ops { +struct nci_driver_ops { __u16 opcode; int (*rsp)(struct nci_dev *dev, struct sk_buff *skb); int (*ntf)(struct nci_dev *dev, struct sk_buff *skb); @@ -94,10 +94,10 @@ struct nci_ops { void (*hci_cmd_received)(struct nci_dev *ndev, u8 pipe, u8 cmd, struct sk_buff *skb); - struct nci_prop_ops *prop_ops; + struct nci_driver_ops *prop_ops; size_t n_prop_ops; - struct nci_prop_ops *core_ops; + struct nci_driver_ops *core_ops; size_t n_core_ops; }; |