diff options
author | Stefan Reinauer <stepan@coresystems.de> | 2009-05-23 22:02:31 +0000 |
---|---|---|
committer | Stefan Reinauer <stepan@openbios.org> | 2009-05-23 22:02:31 +0000 |
commit | bbe29ee06e7030bbba6e2c8c5790e785bf7f0c5b (patch) | |
tree | 80963dd6cc6a90a83d675673e5e5603fbc06afee /src/pc80/keyboard.c | |
parent | e2825504fde2023ee3fa322b408b80b4ccbaf97f (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/keyboard.c')
-rw-r--r-- | src/pc80/keyboard.c | 2 |
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; |