projects
/
platform
/
kernel
/
linux-stable.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4f3ea08
)
ALSA: au88x0: clipping ceiling loop wrong in comment
author
roel kluin
<roel.kluin@gmail.com>
Thu, 7 Aug 2008 19:56:22 +0000
(15:56 -0400)
committer
Jaroslav Kysela
<perex@perex.cz>
Wed, 13 Aug 2008 09:46:26 +0000
(11:46 +0200)
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>
sound/pci/au88x0/au88x0_core.c
patch
|
blob
|
history
diff --git
a/sound/pci/au88x0/au88x0_core.c
b/sound/pci/au88x0/au88x0_core.c
index 333c62de862042f3672b3cf06c87c59c4cd8c707..1900fa6bc51e34c0b71e21569d2e9728011e1553 100644
(file)
--- 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);
}
*/