NFC: Return driver failure upon unknown event reception
authorSamuel Ortiz <sameo@linux.intel.com>
Wed, 13 Nov 2013 00:00:07 +0000 (01:00 +0100)
committerSamuel Ortiz <sameo@linux.intel.com>
Sat, 4 Jan 2014 02:32:27 +0000 (03:32 +0100)
If the device is polling, this will trigger a netlink event to notify
userspace about the polling error.

Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
net/nfc/hci/core.c

index 3b96100..d45b638 100644 (file)
@@ -335,11 +335,8 @@ exit:
        kfree_skb(skb);
 
 exit_noskb:
-       if (r) {
-               /* TODO: There was an error dispatching the event,
-                * how to propagate up to nfc core?
-                */
-       }
+       if (r)
+               nfc_hci_driver_failure(hdev, r);
 }
 
 static void nfc_hci_cmd_timeout(unsigned long data)