diff options
author | Eric Lapuyade <eric.lapuyade@intel.com> | 2012-06-11 13:49:51 +0200 |
---|---|---|
committer | John W. Linville <linville@tuxdriver.com> | 2012-07-09 16:42:08 -0400 |
commit | 456411ca812860d7ba06d3e4013ce1d8b9dbc7cd (patch) | |
tree | 01ab321980f6fb071fd1d6afb4627979f020050c /include/net/nfc | |
parent | 6c1c5b9e1d8a25268a607c762576b5c16e3e7230 (diff) | |
download | linux-456411ca812860d7ba06d3e4013ce1d8b9dbc7cd.tar.bz2 |
NFC: Driver failure API
This API should be used by drivers, HCI, SHDLC or NCI stacks to report an
unrecoverable error.
Signed-off-by: Eric Lapuyade <eric.lapuyade@intel.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'include/net/nfc')
-rw-r--r-- | include/net/nfc/nfc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/net/nfc/nfc.h b/include/net/nfc/nfc.h index 180964b954ab..6431f5e39022 100644 --- a/include/net/nfc/nfc.h +++ b/include/net/nfc/nfc.h @@ -204,4 +204,6 @@ int nfc_tm_activated(struct nfc_dev *dev, u32 protocol, u8 comm_mode, int nfc_tm_deactivated(struct nfc_dev *dev); int nfc_tm_data_received(struct nfc_dev *dev, struct sk_buff *skb); +void nfc_driver_failure(struct nfc_dev *dev, int err); + #endif /* __NET_NFC_H */ |