usbaudio.h (825e587af2e90e9b953849f3347a01d8f383d577) | usbaudio.h (0ba41d917eeb87f608cf147f870ff2f4c1056bab) |
---|---|
1#ifndef __USBAUDIO_H 2#define __USBAUDIO_H 3/* 4 * (Tentative) USB Audio Driver for ALSA 5 * 6 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de> 7 * 8 * --- 46 unchanged lines hidden (view full) --- 55 struct list_head mixer_list; /* list of mixer interfaces */ 56 57 int setup; /* from the 'device_setup' module param */ 58 bool autoclock; /* from the 'autoclock' module param */ 59 60 struct usb_host_interface *ctrl_intf; /* the audio control interface */ 61}; 62 | 1#ifndef __USBAUDIO_H 2#define __USBAUDIO_H 3/* 4 * (Tentative) USB Audio Driver for ALSA 5 * 6 * Copyright (c) 2002 by Takashi Iwai <tiwai@suse.de> 7 * 8 * --- 46 unchanged lines hidden (view full) --- 55 struct list_head mixer_list; /* list of mixer interfaces */ 56 57 int setup; /* from the 'device_setup' module param */ 58 bool autoclock; /* from the 'autoclock' module param */ 59 60 struct usb_host_interface *ctrl_intf; /* the audio control interface */ 61}; 62 |
63#define usb_audio_err(chip, fmt, args...) \ 64 dev_err(&(chip)->dev->dev, fmt, ##args) 65#define usb_audio_warn(chip, fmt, args...) \ 66 dev_warn(&(chip)->dev->dev, fmt, ##args) 67#define usb_audio_info(chip, fmt, args...) \ 68 dev_info(&(chip)->dev->dev, fmt, ##args) 69#define usb_audio_dbg(chip, fmt, args...) \ 70 dev_dbg(&(chip)->dev->dev, fmt, ##args) 71 |
|
63/* 64 * Information about devices with broken descriptors 65 */ 66 67/* special values for .ifnum */ 68#define QUIRK_NO_INTERFACE -2 69#define QUIRK_ANY_INTERFACE -1 70 --- 38 unchanged lines hidden --- | 72/* 73 * Information about devices with broken descriptors 74 */ 75 76/* special values for .ifnum */ 77#define QUIRK_NO_INTERFACE -2 78#define QUIRK_ANY_INTERFACE -1 79 --- 38 unchanged lines hidden --- |