summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authormycroft <mycroft@NetBSD.org>1994-05-05 08:31:00 +0000
committermycroft <mycroft@NetBSD.org>1994-05-05 08:31:00 +0000
commit5f478330e81e36cf19f87f01f0bcb53e94ab8f3a (patch)
tree76cbfd1997df34e8a25d83a04cf967f4136f6020 /sys/dev
parent327f9dd95084a312dd430929e636e48a4435e728 (diff)
Remove now-bogus casts.
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/ata/wd.c6
-rw-r--r--sys/dev/isa/wd.c6
2 files changed, 6 insertions, 6 deletions
diff --git a/sys/dev/ata/wd.c b/sys/dev/ata/wd.c
index 46810335e71..28c7b898cd4 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.81 1994/05/05 05:37:05 cgd Exp $
+ * $Id: wd.c,v 1.82 1994/05/05 08:31:00 mycroft Exp $
*/
#define INSTRUMENT /* instrumentation stuff by Brad Parker */
@@ -1523,7 +1523,7 @@ wdcunwedge(wdc)
++wdc->sc_errors;
/* Wake up in a little bit and restart the operation. */
- timeout(wdcrestart, (caddr_t)wdc, RECOVERYTIME);
+ timeout(wdcrestart, wdc, RECOVERYTIME);
}
int
@@ -1564,7 +1564,7 @@ wdctimeout(arg)
wderror(wdc, NULL, "lost interrupt");
wdcunwedge(wdc);
}
- timeout(wdctimeout, (caddr_t)wdc, hz);
+ timeout(wdctimeout, wdc, hz);
splx(s);
}
diff --git a/sys/dev/isa/wd.c b/sys/dev/isa/wd.c
index 46810335e71..28c7b898cd4 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.81 1994/05/05 05:37:05 cgd Exp $
+ * $Id: wd.c,v 1.82 1994/05/05 08:31:00 mycroft Exp $
*/
#define INSTRUMENT /* instrumentation stuff by Brad Parker */
@@ -1523,7 +1523,7 @@ wdcunwedge(wdc)
++wdc->sc_errors;
/* Wake up in a little bit and restart the operation. */
- timeout(wdcrestart, (caddr_t)wdc, RECOVERYTIME);
+ timeout(wdcrestart, wdc, RECOVERYTIME);
}
int
@@ -1564,7 +1564,7 @@ wdctimeout(arg)
wderror(wdc, NULL, "lost interrupt");
wdcunwedge(wdc);
}
- timeout(wdctimeout, (caddr_t)wdc, hz);
+ timeout(wdctimeout, wdc, hz);
splx(s);
}