From: Peter Dinda Date: Sat, 17 Sep 2011 00:02:45 +0000 (-0500) Subject: Corrected keyboard hook syntax for when 0x80 delay port intercept is turned on X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?p=palacios.git;a=commitdiff_plain;h=ed58e44a111e3bb28e1b2fefd93fe7955962d682 Corrected keyboard hook syntax for when 0x80 delay port intercept is turned on --- diff --git a/palacios/src/devices/keyboard.c b/palacios/src/devices/keyboard.c index e974503..f8786e2 100644 --- a/palacios/src/devices/keyboard.c +++ b/palacios/src/devices/keyboard.c @@ -573,7 +573,7 @@ static int mouse_write_output(struct keyboard_internal * kbd, uint8_t data) { #if KEYBOARD_DEBUG_80H -static int keyboard_write_delay(ushort_t port, void * src, uint_t length, void * priv_data) { +static int keyboard_write_delay(struct guest_info *core, ushort_t port, void * src, uint_t length, void * priv_data) { if (length == 1) { PrintDebug("keyboard: write of 0x%x to 80h\n", *((uint8_t*)src));