License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / sound / oss / v_midi.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
2typedef struct vmidi_devc {
3 int dev;
4
5 /* State variables */
76b53774 6 int opened;
1da177e4 7 spinlock_t lock;
76b53774 8
1da177e4
LT
9 /* MIDI fields */
10 int my_mididev;
11 int pair_mididev;
12 int input_opened;
13 int intr_active;
14 void (*midi_input_intr) (int dev, unsigned char data);
15 } vmidi_devc;