Skip to content

Commit

Permalink
ALSA: au88x0: clipping ceiling loop wrong in comment
Browse files Browse the repository at this point in the history
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>
Signed-off-by: Jaroslav Kysela <perex@perex.cz>
  • Loading branch information
roel kluin authored and Jaroslav Kysela committed Aug 13, 2008
1 parent 4f3ea08 commit c534cc8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sound/pci/au88x0/au88x0_core.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
*/
Expand Down

0 comments on commit c534cc8

Please sign in to comment.