dect
/
linux-2.6
Archived
13
0
Fork 0

NFC: nfc_driver_failure() implementation

If the device is polling we sent a 0 target found event.

Signed-off-by: Eric Lapuyade <eric.lapuyade@intel.com>
Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
This commit is contained in:
Eric Lapuyade 2012-06-11 15:52:38 +02:00 committed by John W. Linville
parent d94f9c55ff
commit 9eb334ac17
1 changed files with 2 additions and 6 deletions

View File

@ -663,13 +663,9 @@ int nfc_target_lost(struct nfc_dev *dev, u32 target_idx)
}
EXPORT_SYMBOL(nfc_target_lost);
void nfc_driver_failure(struct nfc_dev *dev, int err)
inline void nfc_driver_failure(struct nfc_dev *dev, int err)
{
/*
* TODO: if polling is active, send empty target_found
* or else do whatever makes sense to let user space
* know this device needs to be closed and reinitialized.
*/
nfc_targets_found(dev, NULL, 0);
}
EXPORT_SYMBOL(nfc_driver_failure);