diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-10-28 11:40:51 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1996-10-28 11:40:51 +0000 |
commit | b6468a4a26f577d63597c3069f242c1b8b9732e3 (patch) | |
tree | e8a564e09d08322b131718b65905573f821fdf98 /sys | |
parent | f541fed27b05edd7d90f9313f133c1edb16df774 (diff) |
Fix d_done prototype
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/pmax/dev/device.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/arch/pmax/dev/device.h b/sys/arch/pmax/dev/device.h index 434e1b7d2c6..6b8602b8219 100644 --- a/sys/arch/pmax/dev/device.h +++ b/sys/arch/pmax/dev/device.h @@ -54,7 +54,7 @@ struct pmax_driver { /* routine to start operation */ void (*d_start) __P((struct ScsiCmd *cmd)); /* routine to call when operation complete */ - void (*d_done) __P((void)); + void (*d_done) __P((int, int, int, int)); /* routine to call when interrupt is seen */ int (*d_intr) __P((void* sc)); }; |