aboutsummaryrefslogtreecommitdiffstats
path: root/src/mouse.c
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2012-05-28 14:42:16 -0400
committerKevin O'Connor <kevin@koconnor.net>2012-05-30 21:05:18 -0400
commitac7eb5eb54886f5372fc71c6ed266a08a49d8d05 (patch)
treed6dc68cb56935605fd08c45fca7fad35c83cfc02 /src/mouse.c
parentd488a7683d90bf8fae7ceb8c3ad9e95fbbd92079 (diff)
downloadseabios-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.c2
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)