diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-02-05 15:47:51 +0100 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-02-05 15:48:34 +0100 |
commit | 4c9f1d3ed7e5f910b66dc4d1456cfac17e58cf0e (patch) | |
tree | e9b30797bd87ef0b9ef5a812d803e47c43ba9afb /sound/isa/wavefront/wavefront.c | |
parent | 91f050604cc045a0b7aa0460d36eb6e0f0cb301a (diff) | |
download | talos-obmc-linux-4c9f1d3ed7e5f910b66dc4d1456cfac17e58cf0e.tar.gz talos-obmc-linux-4c9f1d3ed7e5f910b66dc4d1456cfac17e58cf0e.zip |
ALSA: isa/*: Add missing KERN_* prefix to printk
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/isa/wavefront/wavefront.c')
-rw-r--r-- | sound/isa/wavefront/wavefront.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sound/isa/wavefront/wavefront.c b/sound/isa/wavefront/wavefront.c index 4c095bc7c729..c280e6220aee 100644 --- a/sound/isa/wavefront/wavefront.c +++ b/sound/isa/wavefront/wavefront.c @@ -551,11 +551,11 @@ static int __devinit snd_wavefront_isa_match(struct device *pdev, return 0; #endif if (cs4232_pcm_port[dev] == SNDRV_AUTO_PORT) { - snd_printk("specify CS4232 port\n"); + snd_printk(KERN_ERR "specify CS4232 port\n"); return 0; } if (ics2115_port[dev] == SNDRV_AUTO_PORT) { - snd_printk("specify ICS2115 port\n"); + snd_printk(KERN_ERR "specify ICS2115 port\n"); return 0; } return 1; |