diff options
| author | thorpej <thorpej@NetBSD.org> | 2003-12-14 05:38:20 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 2003-12-14 05:38:20 +0000 |
| commit | b9ee1b0117f3a1a29913f568b5dfe6344d366f19 (patch) | |
| tree | 8c7b48ebd3f303e860e1fdc91e623af14cafb72b /sys/dev | |
| parent | 777270ce9b206ee031d455a9e99325adc8e52ced (diff) | |
Move the wddone() prototype to wd.c
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ata/wd.c | 5 | ||||
| -rw-r--r-- | sys/dev/ata/wdvar.h | 4 |
2 files changed, 4 insertions, 5 deletions
diff --git a/sys/dev/ata/wd.c b/sys/dev/ata/wd.c index 467990e90ee..a5ffeabbf73 100644 --- a/sys/dev/ata/wd.c +++ b/sys/dev/ata/wd.c @@ -1,4 +1,4 @@ -/* $NetBSD: wd.c,v 1.271 2003/12/14 05:37:25 thorpej Exp $ */ +/* $NetBSD: wd.c,v 1.272 2003/12/14 05:38:20 thorpej Exp $ */ /* * Copyright (c) 1998, 2001 Manuel Bouyer. All rights reserved. @@ -66,7 +66,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: wd.c,v 1.271 2003/12/14 05:37:25 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: wd.c,v 1.272 2003/12/14 05:38:20 thorpej Exp $"); #ifndef WDCDEBUG #define WDCDEBUG @@ -187,6 +187,7 @@ void wdgetdisklabel(struct wd_softc *); void wdstart(void *); void __wdstart(struct wd_softc*, struct buf *); void wdrestart(void *); +void wddone(void *); int wd_get_params(struct wd_softc *, u_int8_t, struct ataparams *); void wd_flushcache(struct wd_softc *, int); void wd_shutdown(void *); diff --git a/sys/dev/ata/wdvar.h b/sys/dev/ata/wdvar.h index b538c56a7a9..73ec6bb1707 100644 --- a/sys/dev/ata/wdvar.h +++ b/sys/dev/ata/wdvar.h @@ -1,4 +1,4 @@ -/* $NetBSD: wdvar.h,v 1.25 2003/12/14 05:37:25 thorpej Exp $ */ +/* $NetBSD: wdvar.h,v 1.26 2003/12/14 05:38:20 thorpej Exp $ */ /* * Copyright (c) 1998, 2001 Manuel Bouyer. @@ -80,6 +80,4 @@ struct wd_softc { #define sc_multi sc_wdc_bio.multi #define sc_badsect sc_wdc_bio.badsect -void wddone __P((void *)); - #endif /* _DEV_ATA_WDVAR_H_ */ |
