From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38538) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bJ0ri-0000sy-TP for qemu-devel@nongnu.org; Fri, 01 Jul 2016 12:00:30 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bJ0re-0006dk-No for qemu-devel@nongnu.org; Fri, 01 Jul 2016 12:00:25 -0400 Received: from mail-io0-x22e.google.com ([2607:f8b0:4001:c06::22e]:36775) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bJ0re-0006dg-Hr for qemu-devel@nongnu.org; Fri, 01 Jul 2016 12:00:22 -0400 Received: by mail-io0-x22e.google.com with SMTP id s63so103809458ioi.3 for ; Fri, 01 Jul 2016 09:00:22 -0700 (PDT) From: John Arbuckle Date: Fri, 1 Jul 2016 11:59:48 -0400 Message-Id: <1467388791-1657-1-git-send-email-programmingkidx@gmail.com> Subject: [Qemu-devel] [PATCH v2 0/3] Switch USB HID to QKeyCode List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: eblake@redhat.com, qemu-devel@nongnu.org Cc: John Arbuckle This patchset switches from the PS/2 keycode to QKeyCode support in the hid.c file. John Arbuckle (3): usb-keys.h: initial commit hid.c: convert to QKeyCode hid.c: Add debug support hw/input/hid.c | 285 ++++++++++++++++++++++++++++++-------------- include/hw/input/usb-keys.h | 154 ++++++++++++++++++++++++ 2 files changed, 349 insertions(+), 90 deletions(-) create mode 100644 include/hw/input/usb-keys.h -- v2 changes: - Changed debug code 2.7.2