diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2013-09-24 20:11:06 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2013-09-24 20:11:06 +0000 |
commit | 8462f305c90bf8f0be07bebe2ba800fef136fa7f (patch) | |
tree | b4d498958840e8a209a12c3d48baf37230883687 /sys/dev/isa/files.isa | |
parent | 9ee7ed799de3b09ef90511dd85a93ff687af1116 (diff) |
Sync the MI LANCE code ( le(4) ) with NetBSD, except for the following:
- the am7990_get() - now lance_get() - is unchanged.
- the interrupt acknowledge logic is unchanged, and will disable interrupts,
then acknowledge all interrupt conditions.
Add ILACC (79900) support (from NetBSD).
Both LANCE (am7990.c) and ILACC (am79900.c) code share as much common code
(lance.c) as possible. This affects all le(4) attachments, but the changes
are mostly mechanical, to split am7990-specific parts from lance-agnostic
parts.
Compile tested on all affected platforms. Tested on alpha, hp300, luna88k,
mvme88k, sparc, sparc64 and vax.
Diffstat (limited to 'sys/dev/isa/files.isa')
-rw-r--r-- | sys/dev/isa/files.isa | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/isa/files.isa b/sys/dev/isa/files.isa index 9792a41c117..eb939e41c50 100644 --- a/sys/dev/isa/files.isa +++ b/sys/dev/isa/files.isa @@ -1,4 +1,4 @@ -# $OpenBSD: files.isa,v 1.112 2013/04/05 07:25:26 tedu Exp $ +# $OpenBSD: files.isa,v 1.113 2013/09/24 20:10:59 miod Exp $ # $NetBSD: files.isa,v 1.21 1996/05/16 03:45:55 mycroft Exp $ # # Config file and device description for machine-independent ISA code. @@ -186,8 +186,8 @@ file dev/isa/if_ex.c ex needs-flag # AMD am7990 (Lance) -based boards # (BICC Isolan, NE2100, DEPCA) # device declaration in sys/conf/files -attach le at isa with le_isa -file dev/isa/if_le.c le_isa | le_pci +attach le at isa with le_isa: le24 +file dev/isa/if_le.c le_isa file dev/isa/if_le_isa.c le_isa # SMC91Cxx Ethernet Controllers |