From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: From: =?UTF-8?q?Jo=C3=A3o=20Paulo=20Rechi=20Vita?= To: linux-bluetooth@vger.kernel.org Cc: =?UTF-8?q?Jo=C3=A3o=20Paulo=20Rechi=20Vita?= Subject: [PATCH BlueZ 07/13] hog: Handle output events Date: Tue, 10 Jul 2012 16:16:59 -0300 Message-Id: <1341947825-14789-8-git-send-email-jprvita@openbossa.org> In-Reply-To: <1341947825-14789-1-git-send-email-jprvita@openbossa.org> References: <1341947825-14789-1-git-send-email-jprvita@openbossa.org> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: This patch prints the output events coming from the HID host for debug purposes. --- profiles/input/hog_device.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/profiles/input/hog_device.c b/profiles/input/hog_device.c index d8d67ae..236745a 100644 --- a/profiles/input/hog_device.c +++ b/profiles/input/hog_device.c @@ -411,6 +411,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.4