diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2008-07-24 19:01:29 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2008-07-24 19:01:29 +0000 |
commit | b1c01e55db94fe84870a895ad9734fa5b135cd25 (patch) | |
tree | 204a81652439b4158b315d85a776343a9077400f /sys/dev/pci/if_vr.c | |
parent | 5213c7ecd1340c5dddcf4d941fc1503de2b120d9 (diff) |
dont need malloc.h anymore; plus two tiny whitespace fixes
Diffstat (limited to 'sys/dev/pci/if_vr.c')
-rw-r--r-- | sys/dev/pci/if_vr.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/dev/pci/if_vr.c b/sys/dev/pci/if_vr.c index 4186a61c689..17133111850 100644 --- a/sys/dev/pci/if_vr.c +++ b/sys/dev/pci/if_vr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_vr.c,v 1.74 2008/07/18 13:38:40 thib Exp $ */ +/* $OpenBSD: if_vr.c,v 1.75 2008/07/24 19:01:28 thib Exp $ */ /* * Copyright (c) 1997, 1998 @@ -67,7 +67,6 @@ #include <sys/systm.h> #include <sys/sockio.h> #include <sys/mbuf.h> -#include <sys/malloc.h> #include <sys/kernel.h> #include <sys/timeout.h> #include <sys/socket.h> @@ -682,7 +681,7 @@ vr_list_rx_init(struct vr_softc *sc) cd = &sc->vr_cdata; ld = sc->vr_ldata; - for (i = 0; i < VR_RX_LIST_CNT; i++) { + for (i = 0; i < VR_RX_LIST_CNT; i++) { if (bus_dmamap_create(sc->sc_dmat, MCLBYTES, 1, MCLBYTES, 0, BUS_DMA_NOWAIT | BUS_DMA_READ, &cd->vr_rx_chain[i].vr_map)) @@ -710,7 +709,7 @@ vr_list_rx_init(struct vr_softc *sc) cd->vr_rx_head = &cd->vr_rx_chain[0]; - return(0); + return (0); } /* |