Subversion Repositories shark

Compare Revisions

Ignore whitespace Rev 495 → Rev 496

/shark/trunk/drivers/oldchar/scom.c
20,11 → 20,11
 
/**
------------
CVS : $Id: scom.c,v 1.1 2003-03-24 10:54:17 pj Exp $
CVS : $Id: scom.c,v 1.2 2004-03-09 08:49:13 giacomo Exp $
 
File: $File$
Revision: $Revision: 1.1 $
Last update: $Date: 2003-03-24 10:54:17 $
Revision: $Revision: 1.2 $
Last update: $Date: 2004-03-09 08:49:13 $
------------
 
Author: Massimiliano Giorgi
265,7 → 265,7
if (!(com_link[port].status & FAST_INSTALLED)) {
bit_on(com_link[port].status,FAST_INSTALLED);
bit_on(com_link[shared].status,FAST_INSTALLED);
handler_set(hndl,com_fast,NIL);
handler_set(hndl,com_fast,NIL, TRUE);
#ifdef __DEBUG_SERIAL__
cputs("Handler OK\n");
#endif
/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;