#include <linux/init.h>
#include <linux/module.h>
#include <linux/moduleparam.h>
#include <linux/slab.h>
#include <linux/interrupt.h>
#include <linux/usb.h>
#include <sound/core.h>
#include <sound/initval.h>
#include <sound/pcm.h>
#include <sound/rawmidi.h>
#include "usx2y.h"
#include "usbusx2y.h"
#include "usX2Yhwdep.h"
Go to the source code of this file.
|
| MODULE_AUTHOR ("Karsten Wiese <[email protected]>") |
|
| MODULE_DESCRIPTION ("TASCAM "NAME_ALLCAPS" Version 0.8.7.2") |
|
| MODULE_LICENSE ("GPL") |
|
| MODULE_SUPPORTED_DEVICE ("{{TASCAM(0x1604), "NAME_ALLCAPS"(0x8001)(0x8005)(0x8007) }}") |
|
| module_param_array (index, int, NULL, 0444) |
|
| MODULE_PARM_DESC (index,"Index value for "NAME_ALLCAPS".") |
|
| module_param_array (id, charp, NULL, 0444) |
|
| MODULE_PARM_DESC (id,"ID string for "NAME_ALLCAPS".") |
|
| module_param_array (enable, bool, NULL, 0444) |
|
| MODULE_PARM_DESC (enable,"Enable "NAME_ALLCAPS".") |
|
int | usX2Y_AsyncSeq04_init (struct usX2Ydev *usX2Y) |
|
int | usX2Y_In04_init (struct usX2Ydev *usX2Y) |
|
| MODULE_DEVICE_TABLE (usb, snd_usX2Y_usb_id_table) |
|
| module_usb_driver (snd_usX2Y_usb_driver) |
|
MODULE_DESCRIPTION |
( |
"TASCAM "NAME_ALLCAPS" Version 0.8.7.2" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
usb |
, |
|
|
snd_usX2Y_usb_id_table |
|
|
) |
| |
module_param_array |
( |
id |
, |
|
|
charp |
, |
|
|
NULL |
, |
|
|
0444 |
|
|
) |
| |
MODULE_PARM_DESC |
( |
id |
, |
|
|
"ID string for "NAME_ALLCAPS"." |
|
|
) |
| |
MODULE_PARM_DESC |
( |
enable |
, |
|
|
"Enable "NAME_ALLCAPS"." |
|
|
) |
| |
MODULE_SUPPORTED_DEVICE |
( |
"{{TASCAM(0x1604), "NAME_ALLCAPS"(0x8001)(0x8005)(0x8007) }}" |
| ) |
|
module_usb_driver |
( |
snd_usX2Y_usb_driver |
| ) |
|