diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-04-19 11:40:02 +0200 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-04-19 11:40:02 +0200 |
commit | d6aa764ee8674512287913fcc3a0b1b5c050d5eb (patch) | |
tree | 0cb4a8f6d6cd6f649e705dce6390fa99afc859e0 /sound/pci/emu10k1 | |
parent | 81584a079fc7a18b53fc7db4232419a8faadd414 (diff) | |
parent | 3126a1790e897252868941bd29a3dd526b506804 (diff) | |
download | linux-3.10-d6aa764ee8674512287913fcc3a0b1b5c050d5eb.tar.gz linux-3.10-d6aa764ee8674512287913fcc3a0b1b5c050d5eb.tar.bz2 linux-3.10-d6aa764ee8674512287913fcc3a0b1b5c050d5eb.zip |
Merge branch 'fix/misc' into for-linus
* fix/misc:
ALSA: MAINTAINERS - Update SOUND
ALSA: emu10k1 - off by 1 in snd_emu10k1_wait()
Diffstat (limited to 'sound/pci/emu10k1')
-rw-r--r-- | sound/pci/emu10k1/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/emu10k1/io.c b/sound/pci/emu10k1/io.c index 4bfc31d1b28..c1a5aa15af8 100644 --- a/sound/pci/emu10k1/io.c +++ b/sound/pci/emu10k1/io.c @@ -490,7 +490,7 @@ void snd_emu10k1_wait(struct snd_emu10k1 *emu, unsigned int wait) if (newtime != curtime) break; } - if (count >= 16384) + if (count > 16384) break; curtime = newtime; } |