summaryrefslogtreecommitdiff
path: root/sound
diff options
context:
space:
mode:
authorroel kluin <roel.kluin@gmail.com>2008-08-07 15:56:22 -0400
committerTakashi Iwai <tiwai@suse.de>2008-08-07 17:08:01 +0200
commita932f308bec4713923f5647d4b1484bdcc9f2125 (patch)
treec7bdfe05fb483bdbcb1845fbeca2c3dc4f67c2fa /sound
parentf823697562675f6f45aab35afdb7b51311fa38a4 (diff)
ALSA: au88x0: clipping ceiling loop wrong in comment
As is the clipping ceiling loop appears wrong anyways Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound')
-rw-r--r--sound/pci/au88x0/au88x0_core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/pci/au88x0/au88x0_core.c b/sound/pci/au88x0/au88x0_core.c
index 333c62de8620..1900fa6bc51e 100644
--- a/sound/pci/au88x0/au88x0_core.c
+++ b/sound/pci/au88x0/au88x0_core.c
@@ -427,7 +427,7 @@ static void vortex_mixer_init(vortex_t * vortex)
/* Set clipping ceiling (this may be all wrong). */
/*
- for (x = 0; x > 0x80; x++) {
+ for (x = 0; x < 0x80; x++) {
hwwrite(vortex->mmio, VORTEX_MIXER_CLIP + (x << 2), 0x3ffff);
}
*/