diff options
Diffstat (limited to 'kernel/net/nfc/nfc.h')
-rw-r--r-- | kernel/net/nfc/nfc.h | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/kernel/net/nfc/nfc.h b/kernel/net/nfc/nfc.h index a8ce80b47..c20b784ad 100644 --- a/kernel/net/nfc/nfc.h +++ b/kernel/net/nfc/nfc.h @@ -25,12 +25,15 @@ #include <net/nfc/nfc.h> #include <net/sock.h> +#define NFC_TARGET_MODE_IDLE 0 +#define NFC_TARGET_MODE_SLEEP 1 + struct nfc_protocol { int id; struct proto *proto; struct module *owner; int (*create)(struct net *net, struct socket *sock, - const struct nfc_protocol *nfc_proto); + const struct nfc_protocol *nfc_proto, int kern); }; struct nfc_rawsock { @@ -147,7 +150,7 @@ int nfc_dep_link_down(struct nfc_dev *dev); int nfc_activate_target(struct nfc_dev *dev, u32 target_idx, u32 protocol); -int nfc_deactivate_target(struct nfc_dev *dev, u32 target_idx); +int nfc_deactivate_target(struct nfc_dev *dev, u32 target_idx, u8 mode); int nfc_data_exchange(struct nfc_dev *dev, u32 target_idx, struct sk_buff *skb, data_exchange_cb_t cb, void *cb_context); |