aboutsummaryrefslogtreecommitdiff
path: root/src/pc80
diff options
context:
space:
mode:
authorStefan Reinauer <stepan@coresystems.de>2009-05-23 22:02:31 +0000
committerStefan Reinauer <stepan@openbios.org>2009-05-23 22:02:31 +0000
commitbbe29ee06e7030bbba6e2c8c5790e785bf7f0c5b (patch)
tree80963dd6cc6a90a83d675673e5e5603fbc06afee /src/pc80
parente2825504fde2023ee3fa322b408b80b4ccbaf97f (diff)
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
Diffstat (limited to 'src/pc80')
-rw-r--r--src/pc80/keyboard.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pc80/keyboard.c b/src/pc80/keyboard.c
index 424920e71d..c60a2fad23 100644
--- a/src/pc80/keyboard.c
+++ b/src/pc80/keyboard.c
@@ -194,7 +194,7 @@ void init_pc_keyboard(unsigned port0, unsigned port1, struct pc_keyboard *kbd)
* 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;