aboutsummaryrefslogtreecommitdiffstats
path: root/sound/oss/v_midi.h
diff options
context:
space:
mode:
Diffstat (limited to 'sound/oss/v_midi.h')
-rw-r--r--sound/oss/v_midi.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/sound/oss/v_midi.h b/sound/oss/v_midi.h
new file mode 100644
index 000000000000..1b86cb45c607
--- /dev/null
+++ b/sound/oss/v_midi.h
@@ -0,0 +1,15 @@
1typedef struct vmidi_devc {
2 int dev;
3
4 /* State variables */
5 int opened;
6 spinlock_t lock;
7
8 /* MIDI fields */
9 int my_mididev;
10 int pair_mididev;
11 int input_opened;
12 int intr_active;
13 void (*midi_input_intr) (int dev, unsigned char data);
14 } vmidi_devc;
15