diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2012-05-28 14:42:16 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2012-05-30 21:05:18 -0400 |
commit | ac7eb5eb54886f5372fc71c6ed266a08a49d8d05 (patch) | |
tree | d6dc68cb56935605fd08c45fca7fad35c83cfc02 /src/mouse.c | |
parent | d488a7683d90bf8fae7ceb8c3ad9e95fbbd92079 (diff) | |
download | seabios-ac7eb5eb54886f5372fc71c6ed266a08a49d8d05.tar.gz |
Remove "noinline" declarations from keyboard/mouse driver code.
Now that the extra stack is used for keyboard and mouse driver code,
there is no reason to set noinline (which was done to try and conserve
stack space).
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'src/mouse.c')
-rw-r--r-- | src/mouse.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mouse.c b/src/mouse.c index ece69db0..e4b25e0e 100644 --- a/src/mouse.c +++ b/src/mouse.c @@ -303,7 +303,7 @@ invoke_mouse_handler(u16 ebda_seg) : "edi", "esi", "cc", "memory"); } -void noinline +void process_mouse(u8 data) { if (!CONFIG_MOUSE) |