aboutsummaryrefslogtreecommitdiffstats
path: root/sound
diff options
context:
space:
mode:
authorAndrew Morton <akpm@osdl.org>2006-03-26 04:38:56 -0500
committerLinus Torvalds <torvalds@g5.osdl.org>2006-03-26 11:57:09 -0500
commit6b53f7870d1657831df23788d1984aac3b5a97bd (patch)
tree9392fb65aed9a693e6eacc70d2ccd05e3cff7d8a /sound
parent9110540f7f2bbcc3577d2580a696fbb7af68c892 (diff)
[PATCH] cmpci: don't use generic_hweight32()
It's about to go away. Cc: Akinobu Mita <mita@miraclelinux.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'sound')
-rw-r--r--sound/oss/cmpci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sound/oss/cmpci.c b/sound/oss/cmpci.c
index 1fbd5137f6d7..de60a059ff5f 100644
--- a/sound/oss/cmpci.c
+++ b/sound/oss/cmpci.c
@@ -1713,7 +1713,7 @@ static int mixer_ioctl(struct cm_state *s, unsigned int cmd, unsigned long arg)
1713 case SOUND_MIXER_RECSRC: /* Arg contains a bit for each recording source */ 1713 case SOUND_MIXER_RECSRC: /* Arg contains a bit for each recording source */
1714 if (get_user(val, p)) 1714 if (get_user(val, p))
1715 return -EFAULT; 1715 return -EFAULT;
1716 i = generic_hweight32(val); 1716 i = hweight32(val);
1717 for (j = i = 0; i < SOUND_MIXER_NRDEVICES; i++) { 1717 for (j = i = 0; i < SOUND_MIXER_NRDEVICES; i++) {
1718 if (!(val & (1 << i))) 1718 if (!(val & (1 << i)))
1719 continue; 1719 continue;