summaryrefslogtreecommitdiff
path: root/sys/dev/ic
diff options
context:
space:
mode:
authorFederico G. Schwindt <fgsch@cvs.openbsd.org>2000-04-19 21:52:39 +0000
committerFederico G. Schwindt <fgsch@cvs.openbsd.org>2000-04-19 21:52:39 +0000
commit3ea7fdffeff7f332872e459691b6b73e30598291 (patch)
tree7c2616b998c414b9ea16704b44fb3fd86477156d /sys/dev/ic
parent577a9434c017a5891786b945e8ad4ea521ef0e88 (diff)
Remove NetBSD ifdefs here too.
Diffstat (limited to 'sys/dev/ic')
-rw-r--r--sys/dev/ic/dp8390var.h14
1 files changed, 1 insertions, 13 deletions
diff --git a/sys/dev/ic/dp8390var.h b/sys/dev/ic/dp8390var.h
index 49dd6ccb701..a5c895b10e7 100644
--- a/sys/dev/ic/dp8390var.h
+++ b/sys/dev/ic/dp8390var.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: dp8390var.h,v 1.1 1998/09/22 06:41:13 fgsch Exp $ */
+/* $OpenBSD: dp8390var.h,v 1.2 2000/04/19 21:52:38 fgsch Exp $ */
/* $NetBSD: dp8390var.h,v 1.8 1998/08/12 07:19:09 scottr Exp $ */
/*
@@ -24,11 +24,7 @@ struct dp8390_softc {
void *sc_ih;
int sc_flags; /* interface flags, from config */
-#ifdef __NetBSD__
- struct ethercom sc_ec; /* ethernet common */
-#else
struct arpcom sc_arpcom; /* ethernet common */
-#endif
struct ifmedia sc_media; /* supported media information */
bus_space_tag_t sc_regt; /* NIC register space tag */
@@ -59,10 +55,6 @@ struct dp8390_softc {
u_short rec_page_stop; /* last page of RX ring-buffer */
u_short next_packet; /* pointer to next unread RX packet */
-#ifdef __NetBSD__
- u_int8_t sc_enaddr[6]; /* storage for MAC address */
-#endif
-
int sc_enabled; /* boolean; power enabled on interface */
int (*test_mem) __P((struct dp8390_softc *));
@@ -143,10 +135,6 @@ void dp8390_stop __P((struct dp8390_softc *));
void dp8390_rint __P((struct dp8390_softc *));
-#ifdef __NetBSD__
-void dp8390_getmcaf __P((struct ethercom *, u_int8_t *));
-#else
void dp8390_getmcaf __P((struct arpcom *, u_int8_t *));
-#endif
struct mbuf *dp8390_get __P((struct dp8390_softc *, int, u_short));
void dp8390_read __P((struct dp8390_softc *, int, u_short));