Fixed inconsistent extern declaration of a timeout function and
removed a cast that helped hide the problem. There was no problem in practice (at least on 386's).
This commit is contained in:
parent
e23b7f75de
commit
68f7a74b48
@ -86,7 +86,7 @@ static void cxinput (cx_chan_t *c, void *buf, unsigned len);
|
||||
extern int cxrinta (cx_chan_t *c);
|
||||
extern void cxtinta (cx_chan_t *c);
|
||||
extern void cxmint (cx_chan_t *c);
|
||||
extern void cxtimeout (caddr_t a);
|
||||
extern timeout_t cxtimeout;
|
||||
static void cxdown (cx_chan_t *c);
|
||||
static void cxup (cx_chan_t *c);
|
||||
|
||||
@ -288,7 +288,7 @@ cxattach (struct isa_device *id)
|
||||
|
||||
/* Activate the timeout routine. */
|
||||
if (unit == 0)
|
||||
timeout ((timeout_func_t) cxtimeout, 0, hz*5);
|
||||
timeout (cxtimeout, 0, hz*5);
|
||||
|
||||
printf ("cx%d: <Cronyx-%s>\n", unit, b->name);
|
||||
#ifdef DEVFS
|
||||
|
Loading…
x
Reference in New Issue
Block a user