Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=38977e96cb32e658716e11a05ec7f1fc4618e0f3
Commit:     38977e96cb32e658716e11a05ec7f1fc4618e0f3
Parent:     6ed44ad3ebec52059f6f534deeb08f1d701852c5
Author:     Russ Cox <[EMAIL PROTECTED]>
AuthorDate: Mon Aug 6 15:37:58 2007 +0200
Committer:  Jaroslav Kysela <[EMAIL PROTECTED]>
CommitDate: Tue Oct 16 15:58:26 2007 +0200

    [ALSA] fix selector unit bug affecting some USB speakerphones
    
    Following the suggestion in this thread:
    https://bugs.launchpad.net/ubuntu/+source/alsa-lib/+bug/26683
    the correct upper bound on desc[0] is 5 + num_ins not 6 + num_ins,
    because the index used later is 5+i, not 6+i.
    This change makes my Vosky Chatterbox speakerphone work.
    Apparently it also helps with the Minivox MV100.
    
    Signed-off-by: Russ Cox <[EMAIL PROTECTED]>
    Signed-off-by: Takashi Iwai <[EMAIL PROTECTED]>
    Signed-off-by: Jaroslav Kysela <[EMAIL PROTECTED]>
---
 sound/usb/usbmixer.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/sound/usb/usbmixer.c b/sound/usb/usbmixer.c
index 98d5448..5e32969 100644
--- a/sound/usb/usbmixer.c
+++ b/sound/usb/usbmixer.c
@@ -1483,7 +1483,7 @@ static int parse_audio_selector_unit(struct mixer_build 
*state, int unitid, unsi
        struct snd_kcontrol *kctl;
        char **namelist;
 
-       if (! num_ins || desc[0] < 6 + num_ins) {
+       if (! num_ins || desc[0] < 5 + num_ins) {
                snd_printk(KERN_ERR "invalid SELECTOR UNIT descriptor %d\n", 
unitid);
                return -EINVAL;
        }
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to