This patch prints the output events coming from the HID host for debug purposes. --- input/hog_device.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/input/hog_device.c b/input/hog_device.c index 50394e7..374f9fe 100644 --- a/input/hog_device.c +++ b/input/hog_device.c @@ -415,6 +415,11 @@ static gboolean uhid_event_cb(GIOChannel *io, GIOCondition cond, case UHID_OUTPUT: forward_report(hogdev, &ev); break; + case UHID_OUTPUT_EV: + DBG("uHID output event: type %d code %d value %d", + ev.u.output_ev.type, ev.u.output_ev.code, + ev.u.output_ev.value); + break; default: warn("unexpected uHID event"); break; -- 1.7.10.2 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html