Correct the last parameter for clalloc

This commit is contained in:
n_hibma 1999-11-28 21:07:11 +00:00
parent 0f234c7d5e
commit 92ac5ca18b
3 changed files with 7 additions and 7 deletions

View File

@ -323,7 +323,7 @@ ugenopen(dev, flag, mode, p)
sce->ibuf = malloc(isize, M_USBDEV, M_WAITOK);
DPRINTFN(5, ("ugenopen: intr endpt=%d,isize=%d\n",
endpt, isize));
if (clalloc(&sce->q, UGEN_IBSIZE, UGEN_IBSIZE) == -1)
if (clalloc(&sce->q, UGEN_IBSIZE, 0) == -1)
return (ENOMEM);
err = usbd_open_pipe_intr(sce->iface,
edesc->bEndpointAddress,

View File

@ -1,4 +1,4 @@
/* $NetBSD: uhid.c,v 1.26 1999/10/13 08:10:56 augustss Exp $ */
/* $NetBSD: uhid.c,v 1.27 1999/11/12 00:34:57 augustss Exp $ */
/* $FreeBSD$ */
/*
@ -371,7 +371,7 @@ uhidopen(dev, flag, mode, p)
return (EBUSY);
sc->sc_state |= UHID_OPEN;
if (clalloc(&sc->sc_q, UHID_BSIZE, UHID_BSIZE) == -1) {
if (clalloc(&sc->sc_q, UHID_BSIZE, 0) == -1) {
sc->sc_state &= ~UHID_OPEN;
return (ENOMEM);
}

View File

@ -1,4 +1,4 @@
/* $NetBSD: usb_port.h,v 1.13 1999/10/13 08:10:58 augustss Exp $ */
/* $NetBSD: usb_port.h,v 1.15 1999/11/16 12:04:28 augustss Exp $ */
/* $FreeBSD$ */
/*
@ -277,8 +277,7 @@ __CONCAT(dname,_detach)(self, flags) \
#define DECLARE_USB_DMA_T typedef void * usb_dma_t
/* XXX Change this when FreeBSD has memset
*/
/* XXX Change this when FreeBSD has memset */
#define memcpy(d, s, l) bcopy((s),(d),(l))
#define memset(d, v, l) bzero((d),(l))
#define bswap32(x) swap32(x)
@ -289,11 +288,12 @@ __CONCAT(dname,_detach)(self, flags) \
#define usb_timeout(f, d, t, h) ((h) = timeout((f), (d), (t)))
#define usb_untimeout(f, d, h) untimeout((f), (d), (h))
#define clalloc(p, s, x) (clist_alloc_cblocks((p), (s), (x)), 0)
#define clalloc(p, s, x) (clist_alloc_cblocks((p), (s), (s)), 0)
#define clfree(p) clist_free_cblocks((p))
#define powerhook_establish(fn, sc) 0
#define powerhook_disestablish(hdl)
#define PWR_SUSPEND 1
#define PWR_RESUME 0
#define USB_DECLARE_DRIVER_INIT(dname, init) \