Reverting wd driver back to version before Bruces new driver until the

many bugs can be worked out of it...
This commit is contained in:
Rodney W. Grimes 1993-09-07 02:08:51 +00:00
parent 4af610b846
commit 0ad99dbc30
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=406
2 changed files with 386 additions and 471 deletions

File diff suppressed because it is too large Load diff

View file

@ -129,15 +129,15 @@ struct wdparams {
/*
* wd driver entry points
*/
void wdstrategy(struct buf *bp);
void wdintr(int unit);
int wdopen(dev_t dev, int flags, int fmt, struct proc *p);
int wdprobe(struct isa_device *);
int wdattach(struct isa_device *);
int wdstrategy(struct buf *);
void wdintr(struct intrframe);
int wdopen(dev_t, int, int, struct proc *);
int wdclose(dev_t dev, int flags, int fmt);
int wdioctl(dev_t dev, int cmd, caddr_t addr, int flag);
#ifdef B_FORMAT
int wdformat(struct buf *bp);
#endif
int wdsize(dev_t dev);
int wddump(dev_t dev);
int wdioctl(dev_t, int, caddr_t, int);
/* int wdformat(struct buf *bp); */
int wdsize(dev_t);
int wddump(dev_t);
#endif KERNEL