Change-Id: I452a651b2a1b11d3619ecde50f448812bf032b66
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;
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;