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
This commit is contained in:
parent
e2825504fd
commit
bbe29ee06e
|
@ -194,7 +194,7 @@ void init_pc_keyboard(unsigned port0, unsigned port1, struct pc_keyboard *kbd)
|
||||||
* Not well documented. Google - 0xcb keyboard controller
|
* Not well documented. Google - 0xcb keyboard controller
|
||||||
* This is called before pc_keyboard_init().
|
* 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 */
|
/* clean up any junk that might have been in the kbc */
|
||||||
if (!kbc_cleanup_buffers()) return;
|
if (!kbc_cleanup_buffers()) return;
|
||||||
|
|
Loading…
Reference in New Issue