diff options
| author | thorpej <thorpej@NetBSD.org> | 2003-08-29 01:37:11 +0000 |
|---|---|---|
| committer | thorpej <thorpej@NetBSD.org> | 2003-08-29 01:37:11 +0000 |
| commit | d8ede84c0ff9359beba09cb7c02ef9298b1ad41a (patch) | |
| tree | 49c1fd32a6404da2e1fcf8311e3da530dd3bc69a /sys/dev | |
| parent | 3dd1bba4c446dbc546821278316fcc6842b4b833 (diff) | |
Apply the following change made on 5/26/2003 21:43:29 by gibbs to the
FreeBSD ahd driver:
aic79xx.c:
aic79xx_osm.h:
aic7xxx_osm.h:
Explicitly define functions that take no arguments
with "(void)"
Approved by: RE
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/ic/aic79xx.c | 8 | ||||
| -rw-r--r-- | sys/dev/ic/aic79xx_osm.h | 10 |
2 files changed, 9 insertions, 9 deletions
diff --git a/sys/dev/ic/aic79xx.c b/sys/dev/ic/aic79xx.c index 28f767ca526..021d760a9b1 100644 --- a/sys/dev/ic/aic79xx.c +++ b/sys/dev/ic/aic79xx.c @@ -1,4 +1,4 @@ -/* $NetBSD: aic79xx.c,v 1.11 2003/08/29 01:28:51 thorpej Exp $ */ +/* $NetBSD: aic79xx.c,v 1.12 2003/08/29 01:37:11 thorpej Exp $ */ /* * Core routines and tables shareable across OS platforms. @@ -41,7 +41,7 @@ * * Id: //depot/aic7xxx/aic7xxx/aic79xx.c#193 $ * - * $FreeBSD: src/sys/dev/aic7xxx/aic79xx.c,v 1.15 2003/05/26 21:26:51 gibbs Exp $ + * $FreeBSD: src/sys/dev/aic7xxx/aic79xx.c,v 1.16 2003/05/26 21:43:29 gibbs Exp $ */ /* * Ported from FreeBSD by Pascal Renauld, Network Storage Solutions, Inc. @@ -49,7 +49,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: aic79xx.c,v 1.11 2003/08/29 01:28:51 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: aic79xx.c,v 1.12 2003/08/29 01:37:11 thorpej Exp $"); #include <dev/ic/aic79xx_osm.h> #include <dev/ic/aic79xx_inline.h> @@ -8325,7 +8325,7 @@ sized: } void -ahd_dump_all_cards_state() +ahd_dump_all_cards_state(void) { struct ahd_softc *list_ahd; diff --git a/sys/dev/ic/aic79xx_osm.h b/sys/dev/ic/aic79xx_osm.h index 99cd142741d..ea985eb629c 100644 --- a/sys/dev/ic/aic79xx_osm.h +++ b/sys/dev/ic/aic79xx_osm.h @@ -1,4 +1,4 @@ -/* $NetBSD: aic79xx_osm.h,v 1.3 2003/07/08 10:06:30 itojun Exp $ */ +/* $NetBSD: aic79xx_osm.h,v 1.4 2003/08/29 01:37:12 thorpej Exp $ */ /* * NetBSD platform specific driver option settings, data structures, @@ -32,11 +32,11 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $NetBSD: aic79xx_osm.h,v 1.3 2003/07/08 10:06:30 itojun Exp $ + * $NetBSD: aic79xx_osm.h,v 1.4 2003/08/29 01:37:12 thorpej Exp $ * - * //depot/aic7xxx/freebsd/dev/aic7xxx/aic79xx_osm.h#19 $$NetBSD: aic79xx_osm.h,v 1.3 2003/07/08 10:06:30 itojun Exp $ + * //depot/aic7xxx/freebsd/dev/aic7xxx/aic79xx_osm.h#19 $$NetBSD: aic79xx_osm.h,v 1.4 2003/08/29 01:37:12 thorpej Exp $ * - * $FreeBSD: src/sys/dev/aic7xxx/aic79xx_osm.h,v 1.8 2002/12/04 22:51:29 scottl Exp $ + * $FreeBSD: src/sys/dev/aic7xxx/aic79xx_osm.h,v 1.9 2003/05/26 21:43:29 gibbs Exp $ */ /* * Ported from FreeBSD by Pascal Renauld, Network Storage Solutions, Inc. @@ -294,7 +294,7 @@ ahd_done_unlock(struct ahd_softc *ahd, unsigned long *flags) /* Lock held during ahd_list manipulation and ahd softc frees */ static __inline void -ahd_list_lockinit() +ahd_list_lockinit(void) { } |
