Move the wddone() prototype to wd.c

This commit is contained in:
thorpej 2003-12-14 05:38:20 +00:00
parent 777270ce9b
commit b9ee1b0117
2 changed files with 4 additions and 5 deletions

View File

@ -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 *);

View File

@ -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_ */