diff options
author | alfred <alfred@FreeBSD.org> | 2002-06-29 11:26:05 +0000 |
---|---|---|
committer | alfred <alfred@FreeBSD.org> | 2002-06-29 11:26:05 +0000 |
commit | 7bef0f889b892b9a5a51b51ee7b9622a1d42df6c (patch) | |
tree | 6dedf4569176bf751b214465ac04960a91714bb3 /sys/pci | |
parent | 31ca40f6facc0080ffa3458c757a915a1b921991 (diff) | |
download | FreeBSD-src-7bef0f889b892b9a5a51b51ee7b9622a1d42df6c.zip FreeBSD-src-7bef0f889b892b9a5a51b51ee7b9622a1d42df6c.tar.gz |
catch up with mextfree callback change when TI_PRIVATE_JUMBOS is defined.
Pointed out by: kdm
Diffstat (limited to 'sys/pci')
-rw-r--r-- | sys/pci/if_ti.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/pci/if_ti.c b/sys/pci/if_ti.c index 68a0636..a4ea930 100644 --- a/sys/pci/if_ti.c +++ b/sys/pci/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; |