#include <linux/slab.h>
#include <linux/usb.h>
#include <linux/usb/audio.h>
#include <linux/module.h>
#include <sound/core.h>
#include <sound/hwdep.h>
#include <sound/pcm.h>
#include <sound/initval.h>
#include "usb_stream.c"
#include "../usbaudio.h"
#include "../midi.h"
#include "us122l.h"
Go to the source code of this file.
|
| MODULE_AUTHOR ("Karsten Wiese <[email protected]>") |
|
| MODULE_DESCRIPTION ("TASCAM "NAME_ALLCAPS" Version 0.5") |
|
| MODULE_LICENSE ("GPL") |
|
| 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".") |
|
| MODULE_DEVICE_TABLE (usb, snd_us122l_usb_id_table) |
|
| module_usb_driver (snd_us122l_usb_driver) |
|
#define SND_USB_STREAM_ID "USB STREAM" |
MODULE_DESCRIPTION |
( |
"TASCAM "NAME_ALLCAPS" Version 0.5" |
| ) |
|
MODULE_DEVICE_TABLE |
( |
usb |
, |
|
|
snd_us122l_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_usb_driver |
( |
snd_us122l_usb_driver |
| ) |
|