From ac7eb5eb54886f5372fc71c6ed266a08a49d8d05 Mon Sep 17 00:00:00 2001 From: Kevin O'Connor Date: Mon, 28 May 2012 14:42:16 -0400 Subject: 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 --- src/mouse.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/mouse.c') 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) -- cgit