[ALSA] Add missing KERN_* suffix to printk
[linux-2.6-microblaze.git] / sound / pci / trident / trident_memory.c
index 333d379..f3e6c54 100644 (file)
@@ -170,11 +170,11 @@ __found_pages:
 static int is_valid_page(unsigned long ptr)
 {
        if (ptr & ~0x3fffffffUL) {
-               snd_printk("max memory size is 1GB!!\n");
+               snd_printk(KERN_ERR "max memory size is 1GB!!\n");
                return 0;
        }
        if (ptr & (SNDRV_TRIDENT_PAGE_SIZE-1)) {
-               snd_printk("page is not aligned\n");
+               snd_printk(KERN_ERR "page is not aligned\n");
                return 0;
        }
        return 1;