diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2010-05-01 19:59:34 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2010-05-01 19:59:34 -0400 |
commit | dd5a8a6b0d3c2d8320cb26ea8ac6798091070f9a (patch) | |
tree | 4984d73debd8856a39c408a182e839a86766965b /src/ps2port.h | |
parent | 5718d5662d33355403e7aa62227acecac1755a4f (diff) | |
download | seabios-dd5a8a6b0d3c2d8320cb26ea8ac6798091070f9a.tar.gz |
When USB keyboard active, don't send keyboard commands to ps2 port.
Route keyboard commands to a USB handler when USB keyboard is active.
Add a GETID handler for USB keyboards.
Diffstat (limited to 'src/ps2port.h')
-rw-r--r-- | src/ps2port.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ps2port.h b/src/ps2port.h index bc049033..afb0e786 100644 --- a/src/ps2port.h +++ b/src/ps2port.h @@ -57,8 +57,8 @@ // functions int i8042_flush(void); int i8042_command(int command, u8 *param); -int kbd_command(int command, u8 *param); -int aux_command(int command, u8 *param); +int ps2_kbd_command(int command, u8 *param); +int ps2_mouse_command(int command, u8 *param); void ps2port_setup(void); #endif // ps2port.h |