1 /* SPDX-License-Identifier: GPL-2.0-or-later */
3 * Linux driver for TerraTec DMX 6Fire USB
6 * Created: Jan 01, 2011
7 * Copyright: (C) Torsten Schenk
10 #ifndef USB6FIRE_MIDI_H
11 #define USB6FIRE_MIDI_H
16 struct sfire_chip *chip;
17 struct snd_rawmidi *instance;
19 struct snd_rawmidi_substream *in;
24 struct snd_rawmidi_substream *out;
26 u8 out_serial; /* serial number of out packet */
30 void (*in_received)(struct midi_runtime *rt, u8 *data, int length);
33 int usb6fire_midi_init(struct sfire_chip *chip);
34 void usb6fire_midi_abort(struct sfire_chip *chip);
35 void usb6fire_midi_destroy(struct sfire_chip *chip);
36 #endif /* USB6FIRE_MIDI_H */