diff options
| author | mycroft <mycroft@NetBSD.org> | 1994-03-10 20:05:30 +0000 |
|---|---|---|
| committer | mycroft <mycroft@NetBSD.org> | 1994-03-10 20:05:30 +0000 |
| commit | 0c19458c6fc9a1d119e5630a12b0b511bbf490e0 (patch) | |
| tree | bb22387f6535b58a84d9f78804a12e2e5835227a /sys/dev | |
| parent | aa45779df7395966d596d0d3c7f1664738a2b566 (diff) | |
More updates for new config.
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ata/wd.c | 20 | ||||
| -rw-r--r-- | sys/dev/isa/wd.c | 20 |
2 files changed, 32 insertions, 8 deletions
diff --git a/sys/dev/ata/wd.c b/sys/dev/ata/wd.c index 466b43004ee..46395095546 100644 --- a/sys/dev/ata/wd.c +++ b/sys/dev/ata/wd.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)wd.c 7.2 (Berkeley) 5/9/91 - * $Id: wd.c,v 1.65 1994/03/10 19:57:20 mycroft Exp $ + * $Id: wd.c,v 1.66 1994/03/10 20:05:32 mycroft Exp $ */ #define INSTRUMENT /* instrumentation stuff by Brad Parker */ @@ -140,10 +140,10 @@ struct wdc_softc { int sc_timeout; /* timeout counter */ } wdc_softc[NWDC]; -int wdprobe(), wdattach(), wdintr(); +int wdcprobe(), wdcattach(), wdprobe(), wdattach(), wdintr(); struct isa_driver wdcdriver = { - wdprobe, wdattach, "wdc", + wdcprobe, wdcattach, "wdc", }; struct isa_driver wddriver = { @@ -173,7 +173,7 @@ int wdcwait __P((struct wdc_softc *, int)); * Probe for controller. */ int -wdprobe(dev) +wdcprobe(dev) struct isa_device *dev; { struct wd_softc *wd; @@ -226,6 +226,18 @@ lose: return 0; } +int +wdcattach(dev) + struct isa_device *dev; +{ +} + +int +wdprobe(dev) + struct isa_device *dev; +{ +} + /* * Called for the controller too. Attach each drive if possible. */ diff --git a/sys/dev/isa/wd.c b/sys/dev/isa/wd.c index 466b43004ee..46395095546 100644 --- a/sys/dev/isa/wd.c +++ b/sys/dev/isa/wd.c @@ -35,7 +35,7 @@ * SUCH DAMAGE. * * from: @(#)wd.c 7.2 (Berkeley) 5/9/91 - * $Id: wd.c,v 1.65 1994/03/10 19:57:20 mycroft Exp $ + * $Id: wd.c,v 1.66 1994/03/10 20:05:32 mycroft Exp $ */ #define INSTRUMENT /* instrumentation stuff by Brad Parker */ @@ -140,10 +140,10 @@ struct wdc_softc { int sc_timeout; /* timeout counter */ } wdc_softc[NWDC]; -int wdprobe(), wdattach(), wdintr(); +int wdcprobe(), wdcattach(), wdprobe(), wdattach(), wdintr(); struct isa_driver wdcdriver = { - wdprobe, wdattach, "wdc", + wdcprobe, wdcattach, "wdc", }; struct isa_driver wddriver = { @@ -173,7 +173,7 @@ int wdcwait __P((struct wdc_softc *, int)); * Probe for controller. */ int -wdprobe(dev) +wdcprobe(dev) struct isa_device *dev; { struct wd_softc *wd; @@ -226,6 +226,18 @@ lose: return 0; } +int +wdcattach(dev) + struct isa_device *dev; +{ +} + +int +wdprobe(dev) + struct isa_device *dev; +{ +} + /* * Called for the controller too. Attach each drive if possible. */ |
