Author: stepan Date: 2009-05-24 00:02:31 +0200 (Sun, 24 May 2009) New Revision: 4298
Modified: trunk/coreboot-v2/src/pc80/keyboard.c Log: keyboard driver: function definitions should not omit void if they don't take parameters. (trivial)
Signed-off-by: Stefan Reinauer stepan@coresystems.de Acked-by: Stefan Reinauer stepan@coresystems.de
Modified: trunk/coreboot-v2/src/pc80/keyboard.c =================================================================== --- trunk/coreboot-v2/src/pc80/keyboard.c 2009-05-23 22:00:58 UTC (rev 4297) +++ trunk/coreboot-v2/src/pc80/keyboard.c 2009-05-23 22:02:31 UTC (rev 4298) @@ -194,7 +194,7 @@ * Not well documented. Google - 0xcb keyboard controller * This is called before pc_keyboard_init(). */ -void set_kbc_ps2_mode() +void set_kbc_ps2_mode(void) { /* clean up any junk that might have been in the kbc */ if (!kbc_cleanup_buffers()) return;