diff options
| author | christos <christos@NetBSD.org> | 2006-08-30 02:15:33 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2006-08-30 02:15:33 +0000 |
| commit | 5bfce2e9a788c45c18d77aedf102413fbad734b0 (patch) | |
| tree | d3700fbe06ffa81a893d09343ab60e09cb31c017 /sys/dev | |
| parent | ca858a7e1146748f864b49e2e75fbfa9b8bf3f14 (diff) | |
fix incomplete initializers
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/isapnp/i82365_isapnp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/isapnp/i82365_isapnp.c b/sys/dev/isapnp/i82365_isapnp.c index f2a925c2819..7ed957c183a 100644 --- a/sys/dev/isapnp/i82365_isapnp.c +++ b/sys/dev/isapnp/i82365_isapnp.c @@ -1,4 +1,4 @@ -/* $NetBSD: i82365_isapnp.c,v 1.20 2006/03/29 06:51:47 thorpej Exp $ */ +/* $NetBSD: i82365_isapnp.c,v 1.21 2006/08/30 02:15:33 christos Exp $ */ /* * Copyright (c) 1998 Bill Sommerfeld. All rights reserved. @@ -31,7 +31,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: i82365_isapnp.c,v 1.20 2006/03/29 06:51:47 thorpej Exp $"); +__KERNEL_RCSID(0, "$NetBSD: i82365_isapnp.c,v 1.21 2006/08/30 02:15:33 christos Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -88,6 +88,7 @@ static struct pcmcia_chip_functions pcic_isa_functions = { pcic_chip_socket_enable, pcic_chip_socket_disable, pcic_chip_socket_settype, + NULL, }; int |
