Re: [PATCH] console keyboard mapping broken by 04c71976

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Samuel Thibault
Date: Wednesday, June 11, 2008 - 6:36 pm

Andrew Morton, le Wed 11 Jun 2008 18:27:06 -0700, a écrit :

Ah, right, there was no changelog.



From: Jiri Bohac <jbohac@suse.cz>

Several console keyboard maps are broken since 04c71976, because that
changeset made k_self consider the value as a latin1 character when in
Unicode mode, which is wrong; k_self should still take the console map
into account.

Signed-off-by: Samuel Thibault <samuel.thibault@ens-lyon.org>

diff --git a/drivers/char/keyboard.c b/drivers/char/keyboard.c
index 7f7e798..16492b7 100644
--- a/drivers/char/keyboard.c
+++ b/drivers/char/keyboard.c
@@ -678,10 +678,5 @@
 static void k_self(struct vc_data *vc, unsigned char value, char up_flag)
 {
-	unsigned int uni;
-	if (kbd->kbdmode == VC_UNICODE)
-		uni = value;
-	else
-		uni = conv_8bit_to_uni(value);
-	k_unicode(vc, uni, up_flag);
+	k_unicode(vc, conv_8bit_to_uni(value), up_flag);
 }
--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH] console keyboard mapping broken by 04c71976, Jiri Bohac, (Wed Jun 11, 6:48 am)
Re: [PATCH] console keyboard mapping broken by 04c71976, Samuel Thibault, (Wed Jun 11, 7:03 am)
Re: [PATCH] console keyboard mapping broken by 04c71976, Samuel Thibault, (Wed Jun 11, 8:23 am)
Re: [PATCH] console keyboard mapping broken by 04c71976, Samuel Thibault, (Wed Jun 11, 6:18 pm)
Re: [PATCH] console keyboard mapping broken by 04c71976, Andrew Morton, (Wed Jun 11, 6:27 pm)
Re: [PATCH] console keyboard mapping broken by 04c71976, Samuel Thibault, (Wed Jun 11, 6:36 pm)