mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
33 lines
629 B
C
33 lines
629 B
C
|
/*
|
||
|
* digi00x.h - a part of driver for Digidesign Digi 002/003 family
|
||
|
*
|
||
|
* Copyright (c) 2014-2015 Takashi Sakamoto
|
||
|
*
|
||
|
* Licensed under the terms of the GNU General Public License, version 2.
|
||
|
*/
|
||
|
|
||
|
#ifndef SOUND_DIGI00X_H_INCLUDED
|
||
|
#define SOUND_DIGI00X_H_INCLUDED
|
||
|
|
||
|
#include <linux/compat.h>
|
||
|
#include <linux/device.h>
|
||
|
#include <linux/firewire.h>
|
||
|
#include <linux/module.h>
|
||
|
#include <linux/mod_devicetable.h>
|
||
|
#include <linux/delay.h>
|
||
|
#include <linux/slab.h>
|
||
|
|
||
|
#include <sound/core.h>
|
||
|
#include <sound/initval.h>
|
||
|
|
||
|
#include "../lib.h"
|
||
|
|
||
|
struct snd_dg00x {
|
||
|
struct snd_card *card;
|
||
|
struct fw_unit *unit;
|
||
|
|
||
|
struct mutex mutex;
|
||
|
};
|
||
|
|
||
|
#endif
|