Diff between 35471e7e30784dbb8e26acc6db3ccd6fc74fd7f2 and 69c012fbbefe5f37703585d22c4be4626721ef02

Changed Files

File Additions Deletions Status
profiles/input/hog_device.c +5 -0 modified

Full Patch

diff --git a/profiles/input/hog_device.c b/profiles/input/hog_device.c
index dbff0c5..5bd713a 100644
--- a/profiles/input/hog_device.c
+++ b/profiles/input/hog_device.c
@@ -412,6 +412,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;