Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 1006 → Rev 1007

/shark/trunk/drivers/oldchar/8042.c
20,11 → 20,11
 
/**
------------
CVS : $Id: 8042.c,v 1.6 2005-01-08 14:57:06 pj Exp $
CVS : $Id: 8042.c,v 1.7 2005-05-10 17:20:10 mauro Exp $
 
File: $File$
Revision: $Revision: 1.6 $
Last update: $Date: 2005-01-08 14:57:06 $
Revision: $Revision: 1.7 $
Last update: $Date: 2005-05-10 17:20:10 $
------------
 
8042.h
876,7 → 876,7
if (status) return status;
 
/* set fast handler and task */
handler_set(C8042_KEYBOARDIRQ,keyb_handler,task,TRUE);
handler_set(C8042_KEYBOARDIRQ, keyb_handler, TRUE, task, NULL);
return 0;
}
 
902,7 → 902,7
if (!ps2mouse_present) return -20;
 
/* set fast handler and task */
handler_set(C8042_PS2IRQ,ps2mouse_handler,NIL,TRUE);
handler_set(C8042_PS2IRQ, ps2mouse_handler, TRUE, NIL, NULL);
/* OK, now ps/2 mouse port is active! */
ps2mouse_active=1;