common.h 500 B

12345678910111213141516171819202122232425
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Linux driver for TerraTec DMX 6Fire USB
  4. *
  5. * Author: Torsten Schenk <[email protected]>
  6. * Created: Jan 01, 2011
  7. * Copyright: (C) Torsten Schenk
  8. */
  9. #ifndef USB6FIRE_COMMON_H
  10. #define USB6FIRE_COMMON_H
  11. #include <linux/slab.h>
  12. #include <linux/usb.h>
  13. #include <sound/core.h>
  14. #define PREFIX "6fire: "
  15. struct sfire_chip;
  16. struct midi_runtime;
  17. struct pcm_runtime;
  18. struct control_runtime;
  19. struct comm_runtime;
  20. #endif /* USB6FIRE_COMMON_H */