diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2000-06-12 06:10:49 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2000-06-12 06:10:49 +0000 |
commit | a9ad5c91377c4649b870366ce7de3653f02e36a1 (patch) | |
tree | 35d04aa3e31bed80eb0b9c2abc23a59ae86c16f4 /sys/arch/sparc | |
parent | aadcd40402edf3bf80153254c367de4edc7d4306 (diff) |
move cfdriver to ncr53c9x.c and device declaration to conf/files.
Diffstat (limited to 'sys/arch/sparc')
-rw-r--r-- | sys/arch/sparc/conf/files.sparc | 3 | ||||
-rw-r--r-- | sys/arch/sparc/dev/esp.c | 6 |
2 files changed, 2 insertions, 7 deletions
diff --git a/sys/arch/sparc/conf/files.sparc b/sys/arch/sparc/conf/files.sparc index 017626c044d..b9686ba72c0 100644 --- a/sys/arch/sparc/conf/files.sparc +++ b/sys/arch/sparc/conf/files.sparc @@ -1,4 +1,4 @@ -# $OpenBSD: files.sparc,v 1.35 1999/11/08 15:36:10 mickey Exp $ +# $OpenBSD: files.sparc,v 1.36 2000/06/12 06:10:45 fgsch Exp $ # $NetBSD: files.sparc,v 1.44 1997/08/31 21:29:16 pk Exp $ # @(#)files.sparc 8.1 (Berkeley) 7/19/93 @@ -121,7 +121,6 @@ device hme: ifnet, ether, mii, ifmedia attach hme at sbus file arch/sparc/dev/hme.c hme -device esp: scsi, ncr53c9x attach esp at sbus, dma, obio file arch/sparc/dev/esp.c esp diff --git a/sys/arch/sparc/dev/esp.c b/sys/arch/sparc/dev/esp.c index 5dcc10ddb01..475d4e894ed 100644 --- a/sys/arch/sparc/dev/esp.c +++ b/sys/arch/sparc/dev/esp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: esp.c,v 1.15 1999/02/28 19:12:33 jason Exp $ */ +/* $OpenBSD: esp.c,v 1.16 2000/06/12 06:10:46 fgsch Exp $ */ /* $NetBSD: esp.c,v 1.69 1997/08/27 11:24:18 bouyer Exp $ */ /* @@ -136,10 +136,6 @@ struct cfattach esp_ca = { sizeof(struct esp_softc), espmatch, espattach }; -struct cfdriver esp_cd = { - NULL, "esp", DV_DULL -}; - struct scsi_adapter esp_switch = { ncr53c9x_scsi_cmd, minphys, /* no max at this level; handled by DMA code */ |