From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57900) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Whzgp-0007gD-C8 for qemu-devel@nongnu.org; Wed, 07 May 2014 07:07:12 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1Whzgh-0002nh-Qq for qemu-devel@nongnu.org; Wed, 07 May 2014 07:07:07 -0400 Received: from mx1.redhat.com ([209.132.183.28]:51292) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1Whzgh-0002mB-Iz for qemu-devel@nongnu.org; Wed, 07 May 2014 07:06:59 -0400 Received: from int-mx12.intmail.prod.int.phx2.redhat.com (int-mx12.intmail.prod.int.phx2.redhat.com [10.5.11.25]) by mx1.redhat.com (8.14.4/8.14.4) with ESMTP id s47B6wsL009039 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK) for ; Wed, 7 May 2014 07:06:58 -0400 From: Gerd Hoffmann Date: Wed, 7 May 2014 13:06:49 +0200 Message-Id: <1399460809-15975-11-git-send-email-kraxel@redhat.com> In-Reply-To: <1399460809-15975-1-git-send-email-kraxel@redhat.com> References: <1399460809-15975-1-git-send-email-kraxel@redhat.com> Subject: [Qemu-devel] [PATCH v2 10/10] input: sparc32 kbd: claim en-us layout List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Gerd Hoffmann Reported-by: Olivier Danet Signed-off-by: Gerd Hoffmann --- hw/char/escc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/char/escc.c b/hw/char/escc.c index d7dff70..d9a20aa 100644 --- a/hw/char/escc.c +++ b/hw/char/escc.c @@ -912,7 +912,7 @@ static void handle_kbd_command(ChannelState *s, int val) case 0xf: clear_queue(s); put_queue(s, 0xfe); - put_queue(s, 0); // XXX, layout? + put_queue(s, 0x21); /* en-us layout */ break; default: break; -- 1.8.3.1