/*1* Linux driver for TerraTec DMX 6Fire USB2*3* Author: Torsten Schenk <[email protected]>4* Created: Jan 01, 20115* Version: 0.3.06* Copyright: (C) Torsten Schenk7*8* This program is free software; you can redistribute it and/or modify9* it under the terms of the GNU General Public License as published by10* the Free Software Foundation; either version 2 of the License, or11* (at your option) any later version.12*/1314#ifndef USB6FIRE_COMMON_H15#define USB6FIRE_COMMON_H1617#include <linux/slab.h>18#include <linux/usb.h>19#include <sound/core.h>2021#define PREFIX "6fire: "2223struct sfire_chip;24struct midi_runtime;25struct pcm_runtime;26struct control_runtime;27struct comm_runtime;28#endif /* USB6FIRE_COMMON_H */29303132