mirror of https://github.com/xemu-project/xemu.git
kbd leds: ps/2 kbd
Add led status notification support to the ps/2 kbd driver. Signed-off-by: Gerd Hoffmann <kraxel@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
This commit is contained in:
parent
03a23a85f4
commit
6937b3766f
2
hw/ps2.c
2
hw/ps2.c
|
@ -185,6 +185,7 @@ static void ps2_reset_keyboard(PS2KbdState *s)
|
||||||
{
|
{
|
||||||
s->scan_enabled = 1;
|
s->scan_enabled = 1;
|
||||||
s->scancode_set = 2;
|
s->scancode_set = 2;
|
||||||
|
kbd_put_ledstate(0);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ps2_write_keyboard(void *opaque, int val)
|
void ps2_write_keyboard(void *opaque, int val)
|
||||||
|
@ -259,6 +260,7 @@ void ps2_write_keyboard(void *opaque, int val)
|
||||||
s->common.write_cmd = -1;
|
s->common.write_cmd = -1;
|
||||||
break;
|
break;
|
||||||
case KBD_CMD_SET_LEDS:
|
case KBD_CMD_SET_LEDS:
|
||||||
|
kbd_put_ledstate(val);
|
||||||
ps2_queue(&s->common, KBD_REPLY_ACK);
|
ps2_queue(&s->common, KBD_REPLY_ACK);
|
||||||
s->common.write_cmd = -1;
|
s->common.write_cmd = -1;
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in New Issue