diff options
author | Eran Tromer <eran@tromer.org> | 2008-09-26 01:07:03 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@perex.cz> | 2008-10-10 07:41:37 -0400 |
commit | 97c889a78b70f0ac0949967bf174d1a6a28bfb5c (patch) | |
tree | cce436e5681a5b4112ec901d48959e753447a8d9 /sound/usb/usbaudio.c | |
parent | dc9c8e218da823008ce1572998902a4bdf46af37 (diff) |
ALSA: usb-audio: add support for E-Mu Tracker Pre
Add support for the E-Mu "Tracker Pre" USB sound card, following
the example of the (very similar) E-Mu 0202 and E-Mu 0404 USB.
As with the 0202 and 0404 USB, functionality is very limited:
just a couple of sample rates, no volume/mute control, etc.
Signed-off-by: Eran Tromer <eran@tromer.org>
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
Diffstat (limited to 'sound/usb/usbaudio.c')
-rw-r--r-- | sound/usb/usbaudio.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/usb/usbaudio.c b/sound/usb/usbaudio.c index c5cf682c352f..8af12b680e12 100644 --- a/sound/usb/usbaudio.c +++ b/sound/usb/usbaudio.c | |||
@@ -484,7 +484,7 @@ static int retire_playback_sync_urb_hs(struct snd_usb_substream *subs, | |||
484 | } | 484 | } |
485 | 485 | ||
486 | /* | 486 | /* |
487 | * process after E-Mu 0202/0404 high speed playback sync complete | 487 | * process after E-Mu 0202/0404/Tracker Pre high speed playback sync complete |
488 | * | 488 | * |
489 | * These devices return the number of samples per packet instead of the number | 489 | * These devices return the number of samples per packet instead of the number |
490 | * of samples per microframe. | 490 | * of samples per microframe. |
@@ -2264,6 +2264,7 @@ static void init_substream(struct snd_usb_stream *as, int stream, struct audiofo | |||
2264 | switch (as->chip->usb_id) { | 2264 | switch (as->chip->usb_id) { |
2265 | case USB_ID(0x041e, 0x3f02): /* E-Mu 0202 USB */ | 2265 | case USB_ID(0x041e, 0x3f02): /* E-Mu 0202 USB */ |
2266 | case USB_ID(0x041e, 0x3f04): /* E-Mu 0404 USB */ | 2266 | case USB_ID(0x041e, 0x3f04): /* E-Mu 0404 USB */ |
2267 | case USB_ID(0x041e, 0x3f0a): /* E-Mu Tracker Pre */ | ||
2267 | subs->ops.retire_sync = retire_playback_sync_urb_hs_emu; | 2268 | subs->ops.retire_sync = retire_playback_sync_urb_hs_emu; |
2268 | break; | 2269 | break; |
2269 | } | 2270 | } |