diff options
author | Gilles Chehade <gilles@cvs.openbsd.org> | 2007-09-11 13:39:35 +0000 |
---|---|---|
committer | Gilles Chehade <gilles@cvs.openbsd.org> | 2007-09-11 13:39:35 +0000 |
commit | ca08fa30b3ab02619e3cdee1f4ffd7fae6833fd1 (patch) | |
tree | 51e8b8caf8623fba8a3acc9ce731036f9376a41c /sys/dev/usb/uhci.c | |
parent | 023f148f597a0a1455b3cd62cf30553f5dbc28b5 (diff) |
KNF
prompted and "much better" by marco@, ok pyr@
Diffstat (limited to 'sys/dev/usb/uhci.c')
-rw-r--r-- | sys/dev/usb/uhci.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/usb/uhci.c b/sys/dev/usb/uhci.c index 499a2e2f3b4..fd32f8210a8 100644 --- a/sys/dev/usb/uhci.c +++ b/sys/dev/usb/uhci.c @@ -1,4 +1,4 @@ -/* $OpenBSD: uhci.c,v 1.62 2007/09/10 16:29:28 fgsch Exp $ */ +/* $OpenBSD: uhci.c,v 1.63 2007/09/11 13:39:34 gilles Exp $ */ /* $NetBSD: uhci.c,v 1.172 2003/02/23 04:19:26 simonb Exp $ */ /* $FreeBSD: src/sys/dev/usb/uhci.c,v 1.33 1999/11/17 22:33:41 n_hibma Exp $ */ @@ -577,7 +577,7 @@ uhci_allocm(struct usbd_bus *bus, usb_dma_t *dma, u_int32_t size) uhci_soft_td_t **stds; DPRINTF(("uhci_allocm: get %d TDs\n", n)); stds = malloc(sizeof(uhci_soft_td_t *) * n, M_TEMP, - M_NOWAIT|M_ZERO); + M_NOWAIT | M_ZERO); if (stds == NULL) panic("uhci_allocm"); for(i=0; i < n; i++) |