diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-02-05 18:11:31 +0300 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-02-05 18:11:31 +0300 |
commit | ee419653a38de93b75a577851d9e4003cf0bbe07 (patch) | |
tree | 653dafe079341b6d8b4c858a49aeabdf9657cb7f /sound/pci/ak4531_codec.c | |
parent | 42b0158bdb1344b05cc1e98c363fba9e97137565 (diff) | |
download | linux-ee419653a38de93b75a577851d9e4003cf0bbe07.tar.xz |
ALSA: Fix missing KERN_* prefix to printk in sound/pci
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/ak4531_codec.c')
-rw-r--r-- | sound/pci/ak4531_codec.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sound/pci/ak4531_codec.c b/sound/pci/ak4531_codec.c index 0f819ddb3ebf..fd135e3d8a84 100644 --- a/sound/pci/ak4531_codec.c +++ b/sound/pci/ak4531_codec.c @@ -51,7 +51,8 @@ static void snd_ak4531_dump(struct snd_ak4531 *ak4531) int idx; for (idx = 0; idx < 0x19; idx++) - printk("ak4531 0x%x: 0x%x\n", idx, ak4531->regs[idx]); + printk(KERN_DEBUG "ak4531 0x%x: 0x%x\n", + idx, ak4531->regs[idx]); } #endif |