You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
432 B
28 lines
432 B
17 years ago
|
#ifndef US122L_H
|
||
|
#define US122L_H
|
||
|
|
||
|
|
||
|
struct us122l {
|
||
|
struct snd_usb_audio chip;
|
||
|
int stride;
|
||
|
struct usb_stream_kernel sk;
|
||
|
|
||
|
struct mutex mutex;
|
||
|
struct file *first;
|
||
|
unsigned second_periods_polled;
|
||
|
struct file *master;
|
||
|
struct file *slave;
|
||
|
|
||
|
atomic_t mmap_count;
|
||
|
};
|
||
|
|
||
|
|
||
|
#define US122L(c) ((struct us122l *)(c)->private_data)
|
||
|
|
||
|
#define NAME_ALLCAPS "US-122L"
|
||
|
|
||
|
#define USB_ID_US122L 0x800E
|
||
|
#define USB_ID_US144 0x800F
|
||
|
|
||
|
#endif
|