diff options
author | Alexander Yurchenko <grange@cvs.openbsd.org> | 2003-10-16 10:08:00 +0000 |
---|---|---|
committer | Alexander Yurchenko <grange@cvs.openbsd.org> | 2003-10-16 10:08:00 +0000 |
commit | eff67c4e62ce35c5058cbab273a8fd71834f85ff (patch) | |
tree | 1099fb76d4a20d89122934e2da9f40d412c571e8 /sys/dev/ic/wdc.c | |
parent | fba2dd0f90ad265e8d206d9baeb6a94ee2fa88d4 (diff) |
Kill two static function declarations.
Diffstat (limited to 'sys/dev/ic/wdc.c')
-rw-r--r-- | sys/dev/ic/wdc.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/ic/wdc.c b/sys/dev/ic/wdc.c index 03bdc873694..2c65061059b 100644 --- a/sys/dev/ic/wdc.c +++ b/sys/dev/ic/wdc.c @@ -1,4 +1,4 @@ -/* $OpenBSD: wdc.c,v 1.63 2003/09/28 21:01:43 grange Exp $ */ +/* $OpenBSD: wdc.c,v 1.64 2003/10/16 10:07:59 grange Exp $ */ /* $NetBSD: wdc.c,v 1.68 1999/06/23 19:00:17 bouyer Exp $ */ @@ -99,8 +99,8 @@ struct pool wdc_xfer_pool; -static void __wdcerror(struct channel_softc*, char *); -static int __wdcwait_reset(struct channel_softc *, int); +void __wdcerror(struct channel_softc *, char *); +int __wdcwait_reset(struct channel_softc *, int); void __wdccommand_done(struct channel_softc *, struct wdc_xfer *); void __wdccommand_start(struct channel_softc *, struct wdc_xfer *); int __wdccommand_intr(struct channel_softc *, struct wdc_xfer *, int); @@ -1038,7 +1038,7 @@ wdcreset(chp, verb) return (drv_mask1 != drv_mask2) ? 1 : 0; } -static int +int __wdcwait_reset(chp, drv_mask) struct channel_softc *chp; int drv_mask; @@ -1982,7 +1982,7 @@ wdc_kill_pending(chp) } } -static void +void __wdcerror(chp, msg) struct channel_softc *chp; char *msg; |