diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2010-02-11 22:32:12 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2010-02-11 22:32:12 -0500 |
commit | 84a4d4b0b10c8a4e04c4e7bfd806c6c50693d945 (patch) | |
tree | 06cbd5d92a31c0eeb77bbe3edc292edecac493b5 /src/usb.c | |
parent | bf7f1f3f4e13ab8770ca1b5fbf360934c342f7fc (diff) | |
download | seabios-84a4d4b0b10c8a4e04c4e7bfd806c6c50693d945.tar.gz |
Support USB keyboard auto-repeat.
Support handling of multiple keys pressed simultanously.
Support auto-repeat via USB HID Set_Idle command.
Also, add "noinline" directives to reduce stack usage of timer irq.
Diffstat (limited to 'src/usb.c')
-rw-r--r-- | src/usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -44,7 +44,7 @@ alloc_intr_pipe(u32 endp, int period) } } -int +int noinline usb_poll_intr(struct usb_pipe *pipe, void *data) { u32 endp = GET_FLATPTR(pipe->endp); |