summaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorchristos <christos@NetBSD.org>2006-09-02 07:04:46 +0000
committerchristos <christos@NetBSD.org>2006-09-02 07:04:46 +0000
commita91b63349ca621dec3fedb0ec20405a6b0cea3a5 (patch)
tree469dba13a131bf66d25c431d385ad0c75ebbbda2 /sys/dev
parent7465b736176bc9159cf577b2dc44b62f35d49fda (diff)
add missing initializer
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/midi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/midi.c b/sys/dev/midi.c
index 2ab0f0f10e1..3b7acbf450a 100644
--- a/sys/dev/midi.c
+++ b/sys/dev/midi.c
@@ -1,4 +1,4 @@
-/* $NetBSD: midi.c,v 1.46 2006/07/02 01:33:55 wiz Exp $ */
+/* $NetBSD: midi.c,v 1.47 2006/09/02 07:04:46 christos Exp $ */
/*
* Copyright (c) 1998 The NetBSD Foundation, Inc.
@@ -38,7 +38,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: midi.c,v 1.46 2006/07/02 01:33:55 wiz Exp $");
+__KERNEL_RCSID(0, "$NetBSD: midi.c,v 1.47 2006/09/02 07:04:46 christos Exp $");
#include "midi.h"
#include "sequencer.h"
@@ -118,7 +118,7 @@ dev_type_kqfilter(midikqfilter);
const struct cdevsw midi_cdevsw = {
midiopen, midiclose, midiread, midiwrite, midiioctl,
- nostop, notty, midipoll, nommap, midikqfilter,
+ nostop, notty, midipoll, nommap, midikqfilter, D_OTHER,
};
CFATTACH_DECL(midi, sizeof(struct midi_softc),