summaryrefslogtreecommitdiff
path: root/include/net/nfc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/nfc.h')
-rw-r--r--include/net/nfc.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/net/nfc.h b/include/net/nfc.h
index 87b51fe15b7..6a7f602aa84 100644
--- a/include/net/nfc.h
+++ b/include/net/nfc.h
@@ -48,6 +48,8 @@ typedef void (*data_exchange_cb_t)(void *context, struct sk_buff *skb,
int err);
struct nfc_ops {
+ int (*dev_up)(struct nfc_dev *dev);
+ int (*dev_down)(struct nfc_dev *dev);
int (*start_poll)(struct nfc_dev *dev, u32 protocols);
void (*stop_poll)(struct nfc_dev *dev);
int (*activate_target)(struct nfc_dev *dev, u32 target_idx,
@@ -78,7 +80,9 @@ struct nfc_dev {
int targets_generation;
spinlock_t targets_lock;
struct device dev;
+ bool dev_up;
bool polling;
+ bool remote_activated;
struct nfc_genl_data genl_data;
u32 supported_protocols;