diff options
author | Daniel Mack <daniel@caiaq.de> | 2010-03-04 13:46:12 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2010-03-05 02:16:47 -0500 |
commit | 3e1aebef6fb55e35668d2d7cf608cf03f30c904f (patch) | |
tree | 51e92e89e84a67ec7ac177847e66d4b34a646ce3 /sound/usb | |
parent | bc700ab1407864ebee838de53c9565a394f4da38 (diff) |
ALSA: usb-audio: header file cleanups
Rename snd-usb-lib to snd-usbmidi-lib as MIDI functions are the only
thing it actually contains. Introduce a new header file to only declare
these functions.
Introduced usbmixer.h for all functions exported by usbmixer.c.
Signed-off-by: Daniel Mack <daniel@caiaq.de>
Cc: Clemens Ladisch <clemens@ladisch.de>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb')
-rw-r--r-- | sound/usb/Makefile | 11 | ||||
-rw-r--r-- | sound/usb/misc/ua101.c | 1 | ||||
-rw-r--r-- | sound/usb/usbaudio.c | 3 | ||||
-rw-r--r-- | sound/usb/usbaudio.h | 51 | ||||
-rw-r--r-- | sound/usb/usbmidi.c | 1 | ||||
-rw-r--r-- | sound/usb/usbmidi.h | 48 | ||||
-rw-r--r-- | sound/usb/usbmixer.c | 1 | ||||
-rw-r--r-- | sound/usb/usbmixer.h | 11 | ||||
-rw-r--r-- | sound/usb/usx2y/us122l.c | 1 | ||||
-rw-r--r-- | sound/usb/usx2y/usbusx2y.h | 1 |
10 files changed, 72 insertions, 57 deletions
diff --git a/sound/usb/Makefile b/sound/usb/Makefile index b0e55973c68e..423d829056f1 100644 --- a/sound/usb/Makefile +++ b/sound/usb/Makefile | |||
@@ -3,12 +3,13 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | snd-usb-audio-objs := usbaudio.o usbmixer.o | 5 | snd-usb-audio-objs := usbaudio.o usbmixer.o |
6 | snd-usb-lib-objs := usbmidi.o | 6 | snd-usbmidi-lib-objs := usbmidi.o |
7 | 7 | ||
8 | # Toplevel Module Dependency | 8 | # Toplevel Module Dependency |
9 | obj-$(CONFIG_SND_USB_AUDIO) += snd-usb-audio.o snd-usb-lib.o | 9 | obj-$(CONFIG_SND_USB_AUDIO) += snd-usb-audio.o snd-usbmidi-lib.o |
10 | obj-$(CONFIG_SND_USB_UA101) += snd-usb-lib.o | 10 | |
11 | obj-$(CONFIG_SND_USB_USX2Y) += snd-usb-lib.o | 11 | obj-$(CONFIG_SND_USB_UA101) += snd-usbmidi-lib.o |
12 | obj-$(CONFIG_SND_USB_US122L) += snd-usb-lib.o | 12 | obj-$(CONFIG_SND_USB_USX2Y) += snd-usbmidi-lib.o |
13 | obj-$(CONFIG_SND_USB_US122L) += snd-usbmidi-lib.o | ||
13 | 14 | ||
14 | obj-$(CONFIG_SND) += misc/ usx2y/ caiaq/ | 15 | obj-$(CONFIG_SND) += misc/ usx2y/ caiaq/ |
diff --git a/sound/usb/misc/ua101.c b/sound/usb/misc/ua101.c index e9b0ae52ca82..b4a4cb46a178 100644 --- a/sound/usb/misc/ua101.c +++ b/sound/usb/misc/ua101.c | |||
@@ -24,6 +24,7 @@ | |||
24 | #include <sound/pcm.h> | 24 | #include <sound/pcm.h> |
25 | #include <sound/pcm_params.h> | 25 | #include <sound/pcm_params.h> |
26 | #include "../usbaudio.h" | 26 | #include "../usbaudio.h" |
27 | #include "../usbmidi.h" | ||
27 | 28 | ||
28 | MODULE_DESCRIPTION("Edirol UA-101/1000 driver"); | 29 | MODULE_DESCRIPTION("Edirol UA-101/1000 driver"); |
29 | MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>"); | 30 | MODULE_AUTHOR("Clemens Ladisch <clemens@ladisch.de>"); |
diff --git a/sound/usb/usbaudio.c b/sound/usb/usbaudio.c index 11b0826b8fe6..5b91aa02b40b 100644 --- a/sound/usb/usbaudio.c +++ b/sound/usb/usbaudio.c | |||
@@ -56,7 +56,8 @@ | |||
56 | #include <sound/initval.h> | 56 | #include <sound/initval.h> |
57 | 57 | ||
58 | #include "usbaudio.h" | 58 | #include "usbaudio.h" |
59 | 59 | #include "usbmidi.h" | |
60 | #include "usbmixer.h" | ||
60 | 61 | ||
61 | MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>"); | 62 | MODULE_AUTHOR("Takashi Iwai <tiwai@suse.de>"); |
62 | MODULE_DESCRIPTION("USB Audio"); | 63 | MODULE_DESCRIPTION("USB Audio"); |
diff --git a/sound/usb/usbaudio.h b/sound/usb/usbaudio.h index 42c299cbf63a..49a691a0b281 100644 --- a/sound/usb/usbaudio.h +++ b/sound/usb/usbaudio.h | |||
@@ -21,9 +21,6 @@ | |||
21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | 21 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
22 | */ | 22 | */ |
23 | 23 | ||
24 | /* maximum number of endpoints per interface */ | ||
25 | #define MIDI_MAX_ENDPOINTS 2 | ||
26 | |||
27 | /* handling of USB vendor/product ID pairs as 32-bit numbers */ | 24 | /* handling of USB vendor/product ID pairs as 32-bit numbers */ |
28 | #define USB_ID(vendor, product) (((vendor) << 16) | (product)) | 25 | #define USB_ID(vendor, product) (((vendor) << 16) | (product)) |
29 | #define USB_ID_VENDOR(id) ((id) >> 16) | 26 | #define USB_ID_VENDOR(id) ((id) >> 16) |
@@ -89,39 +86,6 @@ struct snd_usb_audio_quirk { | |||
89 | const void *data; | 86 | const void *data; |
90 | }; | 87 | }; |
91 | 88 | ||
92 | /* data for QUIRK_MIDI_FIXED_ENDPOINT */ | ||
93 | struct snd_usb_midi_endpoint_info { | ||
94 | int8_t out_ep; /* ep number, 0 autodetect */ | ||
95 | uint8_t out_interval; /* interval for interrupt endpoints */ | ||
96 | int8_t in_ep; | ||
97 | uint8_t in_interval; | ||
98 | uint16_t out_cables; /* bitmask */ | ||
99 | uint16_t in_cables; /* bitmask */ | ||
100 | }; | ||
101 | |||
102 | /* for QUIRK_MIDI_YAMAHA, data is NULL */ | ||
103 | |||
104 | /* for QUIRK_MIDI_MIDIMAN, data points to a snd_usb_midi_endpoint_info | ||
105 | * structure (out_cables and in_cables only) */ | ||
106 | |||
107 | /* for QUIRK_COMPOSITE, data points to an array of snd_usb_audio_quirk | ||
108 | * structures, terminated with .ifnum = -1 */ | ||
109 | |||
110 | /* for QUIRK_AUDIO_FIXED_ENDPOINT, data points to an audioformat structure */ | ||
111 | |||
112 | /* for QUIRK_AUDIO/MIDI_STANDARD_INTERFACE, data is NULL */ | ||
113 | |||
114 | /* for QUIRK_AUDIO_EDIROL_UAXX, data is NULL */ | ||
115 | |||
116 | /* for QUIRK_IGNORE_INTERFACE, data is NULL */ | ||
117 | |||
118 | /* for QUIRK_MIDI_NOVATION and _RAW, data is NULL */ | ||
119 | |||
120 | /* for QUIRK_MIDI_EMAGIC, data points to a snd_usb_midi_endpoint_info | ||
121 | * structure (out_cables and in_cables only) */ | ||
122 | |||
123 | /* for QUIRK_MIDI_CME, data is NULL */ | ||
124 | |||
125 | /* | 89 | /* |
126 | */ | 90 | */ |
127 | 91 | ||
@@ -148,21 +112,6 @@ int snd_usb_ctl_msg(struct usb_device *dev, unsigned int pipe, | |||
148 | __u8 request, __u8 requesttype, __u16 value, __u16 index, | 112 | __u8 request, __u8 requesttype, __u16 value, __u16 index, |
149 | void *data, __u16 size, int timeout); | 113 | void *data, __u16 size, int timeout); |
150 | 114 | ||
151 | int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif, | ||
152 | int ignore_error); | ||
153 | void snd_usb_mixer_disconnect(struct list_head *p); | ||
154 | |||
155 | int snd_usbmidi_create(struct snd_card *card, | ||
156 | struct usb_interface *iface, | ||
157 | struct list_head *midi_list, | ||
158 | const struct snd_usb_audio_quirk *quirk); | ||
159 | void snd_usbmidi_input_stop(struct list_head* p); | ||
160 | void snd_usbmidi_input_start(struct list_head* p); | ||
161 | void snd_usbmidi_disconnect(struct list_head *p); | ||
162 | |||
163 | void snd_emuusb_set_samplerate(struct snd_usb_audio *chip, | ||
164 | unsigned char samplerate_id); | ||
165 | |||
166 | /* | 115 | /* |
167 | * retrieve usb_interface descriptor from the host interface | 116 | * retrieve usb_interface descriptor from the host interface |
168 | * (conditional for compatibility with the older API) | 117 | * (conditional for compatibility with the older API) |
diff --git a/sound/usb/usbmidi.c b/sound/usb/usbmidi.c index 2c59afd99611..5915a04cdb9b 100644 --- a/sound/usb/usbmidi.c +++ b/sound/usb/usbmidi.c | |||
@@ -53,6 +53,7 @@ | |||
53 | #include <sound/rawmidi.h> | 53 | #include <sound/rawmidi.h> |
54 | #include <sound/asequencer.h> | 54 | #include <sound/asequencer.h> |
55 | #include "usbaudio.h" | 55 | #include "usbaudio.h" |
56 | #include "usbmidi.h" | ||
56 | 57 | ||
57 | 58 | ||
58 | /* | 59 | /* |
diff --git a/sound/usb/usbmidi.h b/sound/usb/usbmidi.h new file mode 100644 index 000000000000..2089ec987c66 --- /dev/null +++ b/sound/usb/usbmidi.h | |||
@@ -0,0 +1,48 @@ | |||
1 | #ifndef __USBMIDI_H | ||
2 | #define __USBMIDI_H | ||
3 | |||
4 | /* maximum number of endpoints per interface */ | ||
5 | #define MIDI_MAX_ENDPOINTS 2 | ||
6 | |||
7 | /* data for QUIRK_MIDI_FIXED_ENDPOINT */ | ||
8 | struct snd_usb_midi_endpoint_info { | ||
9 | int8_t out_ep; /* ep number, 0 autodetect */ | ||
10 | uint8_t out_interval; /* interval for interrupt endpoints */ | ||
11 | int8_t in_ep; | ||
12 | uint8_t in_interval; | ||
13 | uint16_t out_cables; /* bitmask */ | ||
14 | uint16_t in_cables; /* bitmask */ | ||
15 | }; | ||
16 | |||
17 | /* for QUIRK_MIDI_YAMAHA, data is NULL */ | ||
18 | |||
19 | /* for QUIRK_MIDI_MIDIMAN, data points to a snd_usb_midi_endpoint_info | ||
20 | * structure (out_cables and in_cables only) */ | ||
21 | |||
22 | /* for QUIRK_COMPOSITE, data points to an array of snd_usb_audio_quirk | ||
23 | * structures, terminated with .ifnum = -1 */ | ||
24 | |||
25 | /* for QUIRK_AUDIO_FIXED_ENDPOINT, data points to an audioformat structure */ | ||
26 | |||
27 | /* for QUIRK_AUDIO/MIDI_STANDARD_INTERFACE, data is NULL */ | ||
28 | |||
29 | /* for QUIRK_AUDIO_EDIROL_UA700_UA25/UA1000, data is NULL */ | ||
30 | |||
31 | /* for QUIRK_IGNORE_INTERFACE, data is NULL */ | ||
32 | |||
33 | /* for QUIRK_MIDI_NOVATION and _RAW, data is NULL */ | ||
34 | |||
35 | /* for QUIRK_MIDI_EMAGIC, data points to a snd_usb_midi_endpoint_info | ||
36 | * structure (out_cables and in_cables only) */ | ||
37 | |||
38 | /* for QUIRK_MIDI_CME, data is NULL */ | ||
39 | |||
40 | int snd_usbmidi_create(struct snd_card *card, | ||
41 | struct usb_interface *iface, | ||
42 | struct list_head *midi_list, | ||
43 | const struct snd_usb_audio_quirk *quirk); | ||
44 | void snd_usbmidi_input_stop(struct list_head* p); | ||
45 | void snd_usbmidi_input_start(struct list_head* p); | ||
46 | void snd_usbmidi_disconnect(struct list_head *p); | ||
47 | |||
48 | #endif /* __USBMIDI_H */ | ||
diff --git a/sound/usb/usbmixer.c b/sound/usb/usbmixer.c index 8e8f871b74ca..43d53a362494 100644 --- a/sound/usb/usbmixer.c +++ b/sound/usb/usbmixer.c | |||
@@ -41,6 +41,7 @@ | |||
41 | #include <sound/tlv.h> | 41 | #include <sound/tlv.h> |
42 | 42 | ||
43 | #include "usbaudio.h" | 43 | #include "usbaudio.h" |
44 | #include "usbmixer.h" | ||
44 | 45 | ||
45 | /* | 46 | /* |
46 | */ | 47 | */ |
diff --git a/sound/usb/usbmixer.h b/sound/usb/usbmixer.h new file mode 100644 index 000000000000..e199e4bb02f2 --- /dev/null +++ b/sound/usb/usbmixer.h | |||
@@ -0,0 +1,11 @@ | |||
1 | #ifndef __USBMIXER_H | ||
2 | #define __USBMIXER_H | ||
3 | |||
4 | int snd_usb_create_mixer(struct snd_usb_audio *chip, int ctrlif, | ||
5 | int ignore_error); | ||
6 | void snd_usb_mixer_disconnect(struct list_head *p); | ||
7 | |||
8 | void snd_emuusb_set_samplerate(struct snd_usb_audio *chip, | ||
9 | unsigned char samplerate_id); | ||
10 | |||
11 | #endif /* __USBMIXER_H */ | ||
diff --git a/sound/usb/usx2y/us122l.c b/sound/usb/usx2y/us122l.c index 44deb21b1777..4f6518c9b057 100644 --- a/sound/usb/usx2y/us122l.c +++ b/sound/usb/usx2y/us122l.c | |||
@@ -25,6 +25,7 @@ | |||
25 | #define MODNAME "US122L" | 25 | #define MODNAME "US122L" |
26 | #include "usb_stream.c" | 26 | #include "usb_stream.c" |
27 | #include "../usbaudio.h" | 27 | #include "../usbaudio.h" |
28 | #include "../usbmidi.h" | ||
28 | #include "us122l.h" | 29 | #include "us122l.h" |
29 | 30 | ||
30 | MODULE_AUTHOR("Karsten Wiese <fzu@wemgehoertderstaat.de>"); | 31 | MODULE_AUTHOR("Karsten Wiese <fzu@wemgehoertderstaat.de>"); |
diff --git a/sound/usb/usx2y/usbusx2y.h b/sound/usb/usx2y/usbusx2y.h index 1d174cea352b..9ab97b40a357 100644 --- a/sound/usb/usx2y/usbusx2y.h +++ b/sound/usb/usx2y/usbusx2y.h | |||
@@ -1,6 +1,7 @@ | |||
1 | #ifndef USBUSX2Y_H | 1 | #ifndef USBUSX2Y_H |
2 | #define USBUSX2Y_H | 2 | #define USBUSX2Y_H |
3 | #include "../usbaudio.h" | 3 | #include "../usbaudio.h" |
4 | #include "../usbmidi.h" | ||
4 | #include "usbus428ctldefs.h" | 5 | #include "usbus428ctldefs.h" |
5 | 6 | ||
6 | #define NRURBS 2 | 7 | #define NRURBS 2 |