diff options
Diffstat (limited to 'arch/x86/machine/atkbd.c')
-rw-r--r-- | arch/x86/machine/atkbd.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/arch/x86/machine/atkbd.c b/arch/x86/machine/atkbd.c index 26bf9d1f..6223d30f 100644 --- a/arch/x86/machine/atkbd.c +++ b/arch/x86/machine/atkbd.c @@ -606,10 +606,7 @@ atkbd_key_process_chars(const struct atkbd_key *key, s = chars[key->id]; if (s != NULL) { - while (*s != '\0') { - atcons_intr(*s); - s++; - } + atcons_intr(s); } } |