diff options
| author | Alfred Perlstein <alfred@FreeBSD.org> | 2002-06-29 11:26:05 +0000 |
|---|---|---|
| committer | Alfred Perlstein <alfred@FreeBSD.org> | 2002-06-29 11:26:05 +0000 |
| commit | 7c41487d14613305dd8c3fd7b0535fe0126fa377 (patch) | |
| tree | 6dedf4569176bf751b214465ac04960a91714bb3 /sys/dev/ti | |
| parent | 0ff2975460f5bdf3f0964ec08299780e445587ef (diff) | |
Notes
Diffstat (limited to 'sys/dev/ti')
| -rw-r--r-- | sys/dev/ti/if_ti.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ti/if_ti.c b/sys/dev/ti/if_ti.c index 68a063657ecfb..a4ea930657aa6 100644 --- a/sys/dev/ti/if_ti.c +++ b/sys/dev/ti/if_ti.c @@ -251,7 +251,7 @@ static void ti_handle_events (struct ti_softc *); #ifdef TI_PRIVATE_JUMBOS static int ti_alloc_jumbo_mem (struct ti_softc *); static void *ti_jalloc (struct ti_softc *); -static void ti_jfree (caddr_t, void *); +static void ti_jfree (void *, void *); #endif /* TI_PRIVATE_JUMBOS */ static int ti_newbuf_std (struct ti_softc *, int, struct mbuf *); static int ti_newbuf_mini (struct ti_softc *, int, struct mbuf *); @@ -1077,7 +1077,7 @@ static void *ti_jalloc(sc) * Release a jumbo buffer. */ static void ti_jfree(buf, args) - caddr_t buf; + void *buf; void *args; { struct ti_softc *sc; |
