diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1999-08-29 09:03:58 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1999-08-29 09:03:58 +0000 |
| commit | 3de9d6fbe4a7150a92a2f6f2f6450a4e274f062d (patch) | |
| tree | c56f640988c657040f7f52b7c4012dc77bc8dc77 /sys/dev/ti | |
| parent | d4c45842d7dda1872e1ab3338065a4a5bda1bb85 (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 5195324852b4..0d47987a23f3 100644 --- a/sys/dev/ti/if_ti.c +++ b/sys/dev/ti/if_ti.c @@ -603,7 +603,7 @@ static int ti_alloc_jumbo_mem(sc) /* Grab a big chunk o' storage. */ sc->ti_cdata.ti_jumbo_buf = contigmalloc(TI_JMEM, M_DEVBUF, - M_NOWAIT, 0x100000, 0xffffffff, PAGE_SIZE, 0); + M_NOWAIT, 0, 0xffffffff, PAGE_SIZE, 0); if (sc->ti_cdata.ti_jumbo_buf == NULL) { printf("ti%d: no memory for jumbo buffers!\n", sc->ti_unit); @@ -1663,7 +1663,7 @@ static int ti_attach(dev) /* Allocate the general information block and ring buffers. */ sc->ti_rdata = contigmalloc(sizeof(struct ti_ring_data), M_DEVBUF, - M_NOWAIT, 0x100000, 0xffffffff, PAGE_SIZE, 0); + M_NOWAIT, 0, 0xffffffff, PAGE_SIZE, 0); if (sc->ti_rdata == NULL) { bus_teardown_intr(dev, sc->ti_irq, sc->ti_intrhand); |
