From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:56569) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1ZgVvY-0002Oq-0X for qemu-devel@nongnu.org; Mon, 28 Sep 2015 06:45:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1ZgVvX-0000dc-5z for qemu-devel@nongnu.org; Mon, 28 Sep 2015 06:44:59 -0400 References: <1443284532-8634-1-git-send-email-laurent@vivier.eu> <1443284532-8634-2-git-send-email-laurent@vivier.eu> From: Thomas Huth Message-ID: <56091A21.2030304@redhat.com> Date: Mon, 28 Sep 2015 12:44:49 +0200 MIME-Version: 1.0 In-Reply-To: <1443284532-8634-2-git-send-email-laurent@vivier.eu> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH 01/10][TRIVIAL] adb: add to input category List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Laurent Vivier , qemu-trivial@nongnu.org Cc: qemu-block@nongnu.org, qemu-devel@nongnu.org, Alexander Graf , qemu-ppc@nongnu.org, Paolo Bonzini , John Snow On 26/09/15 18:22, Laurent Vivier wrote: > The Apple Desktop Bus is used to connect a keyboard and a mouse, > so add it to the input category. > > Signed-off-by: Laurent Vivier > --- > hw/input/adb.c | 2 ++ > 1 file changed, 2 insertions(+) > > diff --git a/hw/input/adb.c b/hw/input/adb.c > index a18eea2..09eead9 100644 > --- a/hw/input/adb.c > +++ b/hw/input/adb.c > @@ -362,6 +362,7 @@ static void adb_kbd_class_init(ObjectClass *oc, void *data) > > akc->parent_realize = dc->realize; > dc->realize = adb_kbd_realizefn; > + set_bit(DEVICE_CATEGORY_INPUT, dc->categories); > > adc->devreq = adb_kbd_request; > dc->reset = adb_kbd_reset; > @@ -566,6 +567,7 @@ static void adb_mouse_class_init(ObjectClass *oc, void *data) > > amc->parent_realize = dc->realize; > dc->realize = adb_mouse_realizefn; > + set_bit(DEVICE_CATEGORY_INPUT, dc->categories); > > adc->devreq = adb_mouse_request; > dc->reset = adb_mouse_reset; Reviewed-by: Thomas Huth