bauth: Add enumerate function
authorLukas0610 <mail@lukasberger.at>
Thu, 18 Oct 2018 18:20:59 +0000 (11:20 -0700)
committerŁukasz Patron <priv.luk@gmail.com>
Mon, 21 Jan 2019 16:05:20 +0000 (17:05 +0100)
Change-Id: I452a651b2a1b11d3619ecde50f448812bf032b66

fingerprint/bauth/fingerprint.c

index 5145de63938b0bd6fca498516a0083a772b30551..c2ee914c3fc3a1a180623c92150a290c7799a98e 100644 (file)
@@ -163,6 +163,11 @@ static int set_notify_callback(struct fingerprint_device *dev, fingerprint_notif
     return bauth_handle->ss_set_notify_callback(hal_notify_convert);
 }
 
+static int enumerate(struct fingerprint_device *dev __unused)
+{
+    return -1;
+}
+
 static int fingerprint_open(const hw_module_t* module, const char *id, hw_device_t** device)
 {
     int ret;
@@ -198,6 +203,7 @@ static int fingerprint_open(const hw_module_t* module, const char *id, hw_device
     dev->set_active_group = fingerprint_set_active_group;
     dev->authenticate = fingerprint_authenticate;
     dev->set_notify = set_notify_callback;
+    dev->enumerate = enumerate;
     dev->notify = NULL;
 
     *device = (hw_device_t*) dev;