From: Andrew Morton It's about to go away. Cc: Akinobu Mita Signed-off-by: Andrew Morton --- sound/oss/cmpci.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN sound/oss/cmpci.c~cmpci-dont-use-generig_hweight32 sound/oss/cmpci.c --- devel/sound/oss/cmpci.c~cmpci-dont-use-generig_hweight32 2006-02-15 16:00:40.000000000 -0800 +++ devel-akpm/sound/oss/cmpci.c 2006-02-15 16:00:45.000000000 -0800 @@ -1713,7 +1713,7 @@ static int mixer_ioctl(struct cm_state * case SOUND_MIXER_RECSRC: /* Arg contains a bit for each recording source */ if (get_user(val, p)) return -EFAULT; - i = generic_hweight32(val); + i = hweight32(val); for (j = i = 0; i < SOUND_MIXER_NRDEVICES; i++) { if (!(val & (1 << i))) continue; _