42 lines
891 B
C
42 lines
891 B
C
|
/*
|
||
|
* fireworks.h - a part of driver for Fireworks based devices
|
||
|
*
|
||
|
* Copyright (c) 2009-2010 Clemens Ladisch
|
||
|
* Copyright (c) 2013-2014 Takashi Sakamoto
|
||
|
*
|
||
|
* Licensed under the terms of the GNU General Public License, version 2.
|
||
|
*/
|
||
|
#ifndef SOUND_FIREWORKS_H_INCLUDED
|
||
|
#define SOUND_FIREWORKS_H_INCLUDED
|
||
|
|
||
|
#include <linux/compat.h>
|
||
|
#include <linux/device.h>
|
||
|
#include <linux/firewire.h>
|
||
|
#include <linux/firewire-constants.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>
|
||
|
|
||
|
struct snd_efw {
|
||
|
struct snd_card *card;
|
||
|
struct fw_unit *unit;
|
||
|
int card_index;
|
||
|
|
||
|
struct mutex mutex;
|
||
|
spinlock_t lock;
|
||
|
};
|
||
|
|
||
|
#define SND_EFW_DEV_ENTRY(vendor, model) \
|
||
|
{ \
|
||
|
.match_flags = IEEE1394_MATCH_VENDOR_ID | \
|
||
|
IEEE1394_MATCH_MODEL_ID, \
|
||
|
.vendor_id = vendor,\
|
||
|
.model_id = model \
|
||
|
}
|
||
|
|
||
|
#endif
|