diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1997-04-20 15:25:33 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1997-04-20 15:25:33 +0000 |
| commit | 68f7a74b48ae3d7bb6944114a1125d0a23a4a891 (patch) | |
| tree | b03f1634a786f6a2aca2d213c3135a00cc0d9af6 | |
| parent | e23b7f75de78b519ae98f06ee4a863502a402563 (diff) | |
Notes
| -rw-r--r-- | sys/i386/isa/if_cx.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/i386/isa/if_cx.c b/sys/i386/isa/if_cx.c index 991d29049cfe..d57480b459f8 100644 --- a/sys/i386/isa/if_cx.c +++ b/sys/i386/isa/if_cx.c @@ -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 |
