浏览代码

ALSA: Fixed a typo of printk()

Fixed a silly typo of printk() included in the previous patch...

Signed-off-by: Takashi Iwai <tiwai@suse.de>
Takashi Iwai 15 年之前
父节点
当前提交
cf0baf16c3
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      include/sound/core.h

+ 1 - 1
include/sound/core.h

@@ -348,7 +348,7 @@ void __snd_printk(unsigned int level, const char *file, int line,
      __attribute__ ((format (printf, 4, 5)));
 #else
 #define __snd_printk(level, file, line, format, args...) \
-	prinkt(format, ##args)
+	printk(format, ##args)
 #endif
 
 /**