/*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*/13#ifndef USB6FIRE_CHIP_H14#define USB6FIRE_CHIP_H1516#include "common.h"1718struct sfire_chip {19struct usb_device *dev;20struct snd_card *card;21int intf_count; /* number of registered interfaces */22int regidx; /* index in module parameter arrays */23bool shutdown;2425struct midi_runtime *midi;26struct pcm_runtime *pcm;27struct control_runtime *control;28struct comm_runtime *comm;29};30#endif /* USB6FIRE_CHIP_H */31323334