From: Eric Lapuyade Date: Mon, 11 Jun 2012 13:52:38 +0000 (+0200) Subject: NFC: nfc_driver_failure() implementation X-Git-Tag: Ubuntu-5.13.0-19.19~24174^2~57^2~146 X-Git-Url: https://git.proxmox.com/?a=commitdiff_plain;h=9eb334ac1709e8f135af341ce1dd0e6b4449c6d3;p=mirror_ubuntu-jammy-kernel.git NFC: nfc_driver_failure() implementation If the device is polling we sent a 0 target found event. Signed-off-by: Eric Lapuyade Signed-off-by: Samuel Ortiz --- diff --git a/net/nfc/core.c b/net/nfc/core.c index 749ee48d3600..00105e77c792 100644 --- a/net/nfc/core.c +++ b/net/nfc/core.c @@ -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);