Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 495 → Rev 496

/shark/trunk/drivers/oldchar/8042.c
20,11 → 20,11
 
/**
------------
CVS : $Id: 8042.c,v 1.4 2003-09-12 10:09:55 giacomo Exp $
CVS : $Id: 8042.c,v 1.5 2004-03-09 08:49:13 giacomo Exp $
 
File: $File$
Revision: $Revision: 1.4 $
Last update: $Date: 2003-09-12 10:09:55 $
Revision: $Revision: 1.5 $
Last update: $Date: 2004-03-09 08:49:13 $
------------
 
8042.h
876,7 → 876,7
if (status) return status;
 
/* set fast handler and task */
handler_set(C8042_KEYBOARDIRQ,keyb_handler,task);
handler_set(C8042_KEYBOARDIRQ,keyb_handler,task,TRUE);
return 0;
}
 
902,7 → 902,7
if (!ps2mouse_present) return -20;
 
/* set fast handler and task */
handler_set(C8042_PS2IRQ,ps2mouse_handler,NIL);
handler_set(C8042_PS2IRQ,ps2mouse_handler,NIL,TRUE);
/* OK, now ps/2 mouse port is active! */
ps2mouse_active=1;