diff options
author | Takashi Iwai <tiwai@suse.de> | 2005-10-20 12:26:44 -0400 |
---|---|---|
committer | Jaroslav Kysela <perex@suse.cz> | 2005-11-04 07:19:23 -0500 |
commit | 99b359ba10a582148c6725f428a33ba5356dd993 (patch) | |
tree | 15927b52d1b02830a9197bea7806545ffef0749f /sound/pci/via82xx.c | |
parent | 8a3fb4d0ce5cc37a765d59b65a3b3714e5806dc9 (diff) |
[ALSA] Add missing KERN_* suffix to printk
Add missing KERN_* suffix to printk.
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Diffstat (limited to 'sound/pci/via82xx.c')
-rw-r--r-- | sound/pci/via82xx.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sound/pci/via82xx.c b/sound/pci/via82xx.c index 3fdb3b1d4e83..9b2bea866d1b 100644 --- a/sound/pci/via82xx.c +++ b/sound/pci/via82xx.c | |||
@@ -865,7 +865,7 @@ static snd_pcm_uframes_t snd_via8233_pcm_pointer(snd_pcm_substream_t *substream) | |||
865 | idx = count >> 24; | 865 | idx = count >> 24; |
866 | if (idx >= viadev->tbl_entries) { | 866 | if (idx >= viadev->tbl_entries) { |
867 | #ifdef POINTER_DEBUG | 867 | #ifdef POINTER_DEBUG |
868 | printk("fail: invalid idx = %i/%i\n", idx, viadev->tbl_entries); | 868 | printk(KERN_DEBUG "fail: invalid idx = %i/%i\n", idx, viadev->tbl_entries); |
869 | #endif | 869 | #endif |
870 | res = viadev->lastpos; | 870 | res = viadev->lastpos; |
871 | } else { | 871 | } else { |
@@ -2032,7 +2032,7 @@ static int snd_via82xx_chip_init(via82xx_t *chip) | |||
2032 | } while (time_before(jiffies, end_time)); | 2032 | } while (time_before(jiffies, end_time)); |
2033 | 2033 | ||
2034 | if ((val = snd_via82xx_codec_xread(chip)) & VIA_REG_AC97_BUSY) | 2034 | if ((val = snd_via82xx_codec_xread(chip)) & VIA_REG_AC97_BUSY) |
2035 | snd_printk("AC'97 codec is not ready [0x%x]\n", val); | 2035 | snd_printk(KERN_ERR "AC'97 codec is not ready [0x%x]\n", val); |
2036 | 2036 | ||
2037 | #if 0 /* FIXME: we don't support the second codec yet so skip the detection now.. */ | 2037 | #if 0 /* FIXME: we don't support the second codec yet so skip the detection now.. */ |
2038 | snd_via82xx_codec_xwrite(chip, VIA_REG_AC97_READ | | 2038 | snd_via82xx_codec_xwrite(chip, VIA_REG_AC97_READ | |
@@ -2228,7 +2228,7 @@ static int __devinit snd_via82xx_create(snd_card_t * card, | |||
2228 | snd_via8233_interrupt : snd_via686_interrupt, | 2228 | snd_via8233_interrupt : snd_via686_interrupt, |
2229 | SA_INTERRUPT|SA_SHIRQ, | 2229 | SA_INTERRUPT|SA_SHIRQ, |
2230 | card->driver, (void *)chip)) { | 2230 | card->driver, (void *)chip)) { |
2231 | snd_printk("unable to grab IRQ %d\n", pci->irq); | 2231 | snd_printk(KERN_ERR "unable to grab IRQ %d\n", pci->irq); |
2232 | snd_via82xx_free(chip); | 2232 | snd_via82xx_free(chip); |
2233 | return -EBUSY; | 2233 | return -EBUSY; |
2234 | } | 2234 | } |