projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6c82681
)
console keyboard mapping broken by 04c71976
author
Jiri Bohac
<
[email protected]
>
Thu, 12 Jun 2008 22:21:51 +0000
(15:21 -0700)
committer
Linus Torvalds
<
[email protected]
>
Fri, 13 Jun 2008 01:05:41 +0000
(18:05 -0700)
Several console keyboard maps are broken since
commit
04c71976500352d02f60616d2b960267d8c5fe24
Author: Samuel Thibault <
[email protected]
>
Date: Tue Oct 16 23:27:04 2007 -0700
unicode diacritics support
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 <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/char/keyboard.c
patch
|
blob
|
history
diff --git
a/drivers/char/keyboard.c
b/drivers/char/keyboard.c
index 7f7e798c13844f0a8c8e2630057566c9ed5a66cf..d9a0a53c842d2f35632a069591d148bfc843c2d9 100644
(file)
--- a/
drivers/char/keyboard.c
+++ b/
drivers/char/keyboard.c
@@
-677,12
+677,7
@@
static void k_deadunicode(struct vc_data *vc, unsigned int value, char up_flag)
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);
}
static void k_dead2(struct vc_data *vc, unsigned char value, char up_flag)