Commit 889bec69d67d36f58f5a1a05fc2832816cca8d6f
1 parent
82258945
Revert "QEMU keyboard issue with Gujin-2.2" (Avi Kivity).
This reverts commit r3421, which kills the mouse in SuSE Linux 9.1 (there were other reports of breakage earlier also). Signed-off-by: Avi Kivity <avi@qumranet.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com> git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4905 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
hw/pckbd.c
... | ... | @@ -208,7 +208,7 @@ static void kbd_write_command(void *opaque, uint32_t addr, uint32_t val) |
208 | 208 | #endif |
209 | 209 | switch(val) { |
210 | 210 | case KBD_CCMD_READ_MODE: |
211 | - kbd_queue(s, s->mode, 1); | |
211 | + kbd_queue(s, s->mode, 0); | |
212 | 212 | break; |
213 | 213 | case KBD_CCMD_WRITE_MODE: |
214 | 214 | case KBD_CCMD_WRITE_OBUF: | ... | ... |