added my responsibility for the `cpm' port
[unix-history] / sys / i386 / isa / wdreg.h
index 5feabf5..2694bed 100644 (file)
@@ -34,7 +34,7 @@
  * SUCH DAMAGE.
  *
  *     from: @(#)wdreg.h       7.1 (Berkeley) 5/9/91
  * SUCH DAMAGE.
  *
  *     from: @(#)wdreg.h       7.1 (Berkeley) 5/9/91
- *     $Id$
+ *     $Id: wxreg.h,v 1.1 1993/10/26 22:26:39 nate Exp $
  */
 
 /*
  */
 
 /*
@@ -130,15 +130,15 @@ struct wdparams {
 /*
  * wd driver entry points
  */
 /*
  * wd driver entry points
  */
-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 *);
+void wdstrategy(struct buf *bp);
+void wdintr(int unit);
+int wdopen(dev_t dev, int flags, int fmt, struct proc *p);
 int wdclose(dev_t dev, int flags, int fmt);
 int wdclose(dev_t dev, int flags, int fmt);
-int wdioctl(dev_t, int, caddr_t, int);
-/* int wdformat(struct buf *bp); */
-int wdsize(dev_t);
-int wddump(dev_t);
+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);
 
 #endif KERNEL
 
 #endif KERNEL