aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAriff Abdullah <ariff@FreeBSD.org>2007-04-02 06:03:47 +0000
committerAriff Abdullah <ariff@FreeBSD.org>2007-04-02 06:03:47 +0000
commitff7499570c7d34540883feb6348648b1461cf146 (patch)
treecbf948760f37054a54ea507b285f5f5afab6d41e
parent75a1d5a086ee4f8adc4fde7179272acced051e05 (diff)
Notes
-rw-r--r--sys/dev/sound/midi/midi.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/dev/sound/midi/midi.c b/sys/dev/sound/midi/midi.c
index d068f58a3131..364c6ba41163 100644
--- a/sys/dev/sound/midi/midi.c
+++ b/sys/dev/sound/midi/midi.c
@@ -1453,14 +1453,18 @@ midi_modevent(module_t mod, int type, void *data)
switch (type) {
case MOD_LOAD:
retval = midi_load();
+#if 0
if (retval == 0)
retval = seq_modevent(mod, type, data);
+#endif
break;
case MOD_UNLOAD:
retval = midi_unload();
+#if 0
if (retval == 0)
retval = seq_modevent(mod, type, data);
+#endif
break;
default: