diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-02-05 15:55:18 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-02-05 15:55:18 +0100 |
commit | 54530bded6ecf22d683423b66fc3cd6dddb249aa (patch) | |
tree | f8de7cddc8f5bed64e4bcdfebe24442acd62221c /sound/usb/usbmixer.c | |
parent | ALSA: usbaudio - use printf format instead of hardcoding it (diff) | |
download | linux-54530bded6ecf22d683423b66fc3cd6dddb249aa.tar.xz linux-54530bded6ecf22d683423b66fc3cd6dddb249aa.zip |
ALSA: usb - Add missing KERN_* prefix to printk
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/usb/usbmixer.c')
-rw-r--r-- | sound/usb/usbmixer.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sound/usb/usbmixer.c b/sound/usb/usbmixer.c index 330f2fbff2d1..6615cd3b4079 100644 --- a/sound/usb/usbmixer.c +++ b/sound/usb/usbmixer.c @@ -222,7 +222,10 @@ static int check_ignored_ctl(struct mixer_build *state, int unitid, int control) for (p = state->map; p->id; p++) { if (p->id == unitid && ! p->name && (! control || ! p->control || control == p->control)) { - // printk("ignored control %d:%d\n", unitid, control); + /* + printk(KERN_DEBUG "ignored control %d:%d\n", + unitid, control); + */ return 1; } } |