summaryrefslogtreecommitdiff
path: root/sys/arch/vax/if/if_le.c
diff options
context:
space:
mode:
authorMiod Vallat <miod@cvs.openbsd.org>2005-07-02 09:28:41 +0000
committerMiod Vallat <miod@cvs.openbsd.org>2005-07-02 09:28:41 +0000
commitf1f0c02f22cb198e5838a136bbe0709796421512 (patch)
treeb39754dff383bb0f2e7f8f5e0b28fedaff5df907 /sys/arch/vax/if/if_le.c
parente6e247e4f6cdde18d315e32b0fcc563b49d7e992 (diff)
Remove dead code; ok deraadt@
Diffstat (limited to 'sys/arch/vax/if/if_le.c')
-rw-r--r--sys/arch/vax/if/if_le.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/sys/arch/vax/if/if_le.c b/sys/arch/vax/if/if_le.c
index e7182e5c5e2..556e6695546 100644
--- a/sys/arch/vax/if/if_le.c
+++ b/sys/arch/vax/if/if_le.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: if_le.c,v 1.12 2004/07/07 23:10:45 deraadt Exp $ */
+/* $OpenBSD: if_le.c,v 1.13 2005/07/02 09:28:40 miod Exp $ */
/* $NetBSD: if_le.c,v 1.14 1999/08/14 18:40:23 ragge Exp $ */
/*-
@@ -116,7 +116,6 @@ u_int16_t lerdcsr(struct am7990_softc *, u_int16_t);
void lance_copytobuf_gap2(struct am7990_softc *, void *, int, int);
void lance_copyfrombuf_gap2(struct am7990_softc *, void *, int, int);
void lance_zerobuf_gap2(struct am7990_softc *, int, int);
-void leintr(void *);
struct cfattach le_ibus_ca = {
sizeof(struct le_softc), le_ibus_match, le_ibus_attach
@@ -312,11 +311,3 @@ lance_zerobuf_gap2(sc, boff, len)
len -= 2;
}
}
-
-void
-leintr(arg)
- void *arg;
-{
- int unit = (int)arg;
- am7990_intr(le_cd.cd_devs[unit]);
-}