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>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4298 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
diff --git a/src/pc80/keyboard.c b/src/pc80/keyboard.c
index 424920e..c60a2fa 100644
--- a/src/pc80/keyboard.c
+++ b/src/pc80/keyboard.c
@@ -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;