diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-02-05 09:55:18 -0500 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-02-05 09:55:18 -0500 |
commit | 54530bded6ecf22d683423b66fc3cd6dddb249aa (patch) | |
tree | f8de7cddc8f5bed64e4bcdfebe24442acd62221c /sound/usb/usbmixer.c | |
parent | b9d710b3c530ed91e8683933fe94c7605d175bf5 (diff) |
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) | |||
222 | for (p = state->map; p->id; p++) { | 222 | for (p = state->map; p->id; p++) { |
223 | if (p->id == unitid && ! p->name && | 223 | if (p->id == unitid && ! p->name && |
224 | (! control || ! p->control || control == p->control)) { | 224 | (! control || ! p->control || control == p->control)) { |
225 | // printk("ignored control %d:%d\n", unitid, control); | 225 | /* |
226 | printk(KERN_DEBUG "ignored control %d:%d\n", | ||
227 | unitid, control); | ||
228 | */ | ||
226 | return 1; | 229 | return 1; |
227 | } | 230 | } |
228 | } | 231 | } |