diff options
Diffstat (limited to 'sys/dev')
-rw-r--r-- | sys/dev/ic/i82596.c | 9 | ||||
-rw-r--r-- | sys/dev/ic/i82596var.h | 4 |
2 files changed, 5 insertions, 8 deletions
diff --git a/sys/dev/ic/i82596.c b/sys/dev/ic/i82596.c index 80d70017e85..3d0f1e4fff4 100644 --- a/sys/dev/ic/i82596.c +++ b/sys/dev/ic/i82596.c @@ -1,4 +1,4 @@ -/* $OpenBSD: i82596.c,v 1.43 2015/06/24 09:40:54 mpi Exp $ */ +/* $OpenBSD: i82596.c,v 1.44 2015/09/18 09:54:08 miod Exp $ */ /* $NetBSD: i82586.c,v 1.18 1998/08/15 04:42:42 mycroft Exp $ */ /*- @@ -268,11 +268,8 @@ i82596_probe(sc) * */ void -i82596_attach(sc, name, etheraddr, media, nmedia, defmedia) - struct ie_softc *sc; - const char *name; - u_int8_t *etheraddr; - int *media, nmedia, defmedia; +i82596_attach(struct ie_softc *sc, const char *name, u_int8_t *etheraddr, + uint64_t *media, int nmedia, uint64_t defmedia) { int i; struct ifnet *ifp = &sc->sc_arpcom.ac_if; diff --git a/sys/dev/ic/i82596var.h b/sys/dev/ic/i82596var.h index 8f4cf06d70f..109380ecc7a 100644 --- a/sys/dev/ic/i82596var.h +++ b/sys/dev/ic/i82596var.h @@ -1,4 +1,4 @@ -/* $OpenBSD: i82596var.h,v 1.12 2008/06/26 05:42:15 ray Exp $ */ +/* $OpenBSD: i82596var.h,v 1.13 2015/09/18 09:54:08 miod Exp $ */ /* $NetBSD: i82586var.h,v 1.10 1998/08/15 04:42:42 mycroft Exp $ */ /*- @@ -279,7 +279,7 @@ int i82596_intr(void *); int i82596_probe(struct ie_softc *); int i82596_proberam(struct ie_softc *); void i82596_attach(struct ie_softc *, const char *, u_int8_t *, - int *, int, int); + uint64_t *, int, uint64_t); int i82596_start_cmd(struct ie_softc *, int, int, int, int); /* |