diff --git a/android/hog.c b/android/hog.c
index 9f8c7e5..ef5690c 100644
--- a/android/hog.c
+++ b/android/hog.c
size = ev->u.output.size;
}
- switch (ev->type) {
- case UHID_OUTPUT:
- type = HOG_REPORT_TYPE_OUTPUT;
- break;
- case UHID_FEATURE:
- type = HOG_REPORT_TYPE_FEATURE;
- break;
- default:
- return;
- }
+ type = HOG_REPORT_TYPE_OUTPUT;
l = g_slist_find_custom(hog->reports, GUINT_TO_POINTER(type),
report_type_cmp);
}
bt_uhid_register(hog->uhid, UHID_OUTPUT, forward_report, hog);
- bt_uhid_register(hog->uhid, UHID_FEATURE, forward_report, hog);
}
static void info_read_cb(guint8 status, const guint8 *pdu, guint16 plen,