diff options
author | Brad Smith <brad@cvs.openbsd.org> | 2006-03-25 20:09:18 +0000 |
---|---|---|
committer | Brad Smith <brad@cvs.openbsd.org> | 2006-03-25 20:09:18 +0000 |
commit | 836d7a3bfc59e5d0ca11de5782cb1ba4923a4fe3 (patch) | |
tree | 760f11a3cdbef9d59861af50c65cca69ef9aa0d1 /sys/dev/pci/if_sis.c | |
parent | d8a821c355d46341b63e7349a1fae44ce8dd61ee (diff) |
tidy up a bit.
From Andrey Matveev
Diffstat (limited to 'sys/dev/pci/if_sis.c')
-rw-r--r-- | sys/dev/pci/if_sis.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/dev/pci/if_sis.c b/sys/dev/pci/if_sis.c index 3256c103d48..72d2747a734 100644 --- a/sys/dev/pci/if_sis.c +++ b/sys/dev/pci/if_sis.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_sis.c,v 1.64 2006/03/25 05:00:28 brad Exp $ */ +/* $OpenBSD: if_sis.c,v 1.65 2006/03/25 20:09:17 brad Exp $ */ /* * Copyright (c) 1997, 1998, 1999 * Bill Paul <wpaul@ctr.columbia.edu>. All rights reserved. @@ -115,8 +115,7 @@ struct cfdriver sis_cd = { int sis_intr(void *); void sis_shutdown(void *); -int sis_newbuf(struct sis_softc *, struct sis_desc *, - struct mbuf *); +int sis_newbuf(struct sis_softc *, struct sis_desc *, struct mbuf *); int sis_encap(struct sis_softc *, struct mbuf *, u_int32_t *); void sis_rxeof(struct sis_softc *); void sis_rxeoc(struct sis_softc *); @@ -1224,7 +1223,7 @@ sis_ring_init(struct sis_softc *sc) * Initialize an RX descriptor and attach an MBUF cluster. */ int -sis_newbuf(struct sis_softc *sc, struct sis_desc*c, struct mbuf *m) +sis_newbuf(struct sis_softc *sc, struct sis_desc *c, struct mbuf *m) { struct mbuf *m_new = NULL; bus_dmamap_t map; |