diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2017-06-06 13:21:03 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2017-06-23 11:51:50 +0200 |
commit | 8498bb8d2e19f5c280aaac6be772fad5980e7519 (patch) | |
tree | 54a4e30b1aa4520ad74312c912eb3e3b7401ba5e /include/hw/input | |
parent | 85970a627f308483053f18a342037245d0fee469 (diff) |
ps2: add and use PS2State typedef
Cleanup: Create and use a typedef for PS2State and stop passing void
pointers. No functional change.
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Message-id: 20170606112105.13331-2-kraxel@redhat.com
Diffstat (limited to 'include/hw/input')
-rw-r--r-- | include/hw/input/ps2.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/hw/input/ps2.h b/include/hw/input/ps2.h index 7f0a80af9d..94709b8502 100644 --- a/include/hw/input/ps2.h +++ b/include/hw/input/ps2.h @@ -36,8 +36,8 @@ void *ps2_kbd_init(void (*update_irq)(void *, int), void *update_arg); void *ps2_mouse_init(void (*update_irq)(void *, int), void *update_arg); void ps2_write_mouse(void *, int val); void ps2_write_keyboard(void *, int val); -uint32_t ps2_read_data(void *); -void ps2_queue(void *, int b); +uint32_t ps2_read_data(PS2State *s); +void ps2_queue(PS2State *s, int b); void ps2_keyboard_set_translation(void *opaque, int mode); void ps2_mouse_fake_event(void *opaque); |