diff options
| author | christos <christos@NetBSD.org> | 2006-08-30 01:24:40 +0000 |
|---|---|---|
| committer | christos <christos@NetBSD.org> | 2006-08-30 01:24:40 +0000 |
| commit | 0340a0cbcdefa2f68831a9cabc918573b1962dfa (patch) | |
| tree | 5a7f6ffd55bef44ba8cc2390cdcf9b036eccc364 /sys/dev | |
| parent | d65306455bb04e88e5d5af83ee4467875b8f9231 (diff) | |
fix incomplete initializer
Diffstat (limited to 'sys/dev')
| -rw-r--r-- | sys/dev/isa/ess.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/dev/isa/ess.c b/sys/dev/isa/ess.c index 727e867b9f3..541762ffc71 100644 --- a/sys/dev/isa/ess.c +++ b/sys/dev/isa/ess.c @@ -1,4 +1,4 @@ -/* $NetBSD: ess.c,v 1.69 2005/12/11 12:22:02 christos Exp $ */ +/* $NetBSD: ess.c,v 1.70 2006/08/30 01:24:40 christos Exp $ */ /* * Copyright 1997 @@ -66,7 +66,7 @@ */ #include <sys/cdefs.h> -__KERNEL_RCSID(0, "$NetBSD: ess.c,v 1.69 2005/12/11 12:22:02 christos Exp $"); +__KERNEL_RCSID(0, "$NetBSD: ess.c,v 1.70 2006/08/30 01:24:40 christos Exp $"); #include <sys/param.h> #include <sys/systm.h> @@ -240,6 +240,7 @@ const struct audio_hw_if ess_1788_hw_if = { ess_audio1_trigger_output, ess_audio1_trigger_input, NULL, + NULL, }; const struct audio_hw_if ess_1888_hw_if = { @@ -270,6 +271,7 @@ const struct audio_hw_if ess_1888_hw_if = { ess_audio2_trigger_output, ess_audio1_trigger_input, NULL, + NULL, }; #define ESS_NFORMATS 8 |
