diff options
author | Takashi Iwai <tiwai@suse.de> | 2009-08-28 01:22:05 -0400 |
---|---|---|
committer | Takashi Iwai <tiwai@suse.de> | 2009-08-28 01:22:05 -0400 |
commit | cf0baf16c3a3b3dd67ea3df346479032ab10e988 (patch) | |
tree | 6033a302d915ca7d2da6bde1da49d44f621b637e /include/sound | |
parent | 36ce99c1dcab2978fc1900f19b431adedd8f99f6 (diff) |
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>
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/core.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sound/core.h b/include/sound/core.h index a89728db5584..1ec992b3f1d0 100644 --- a/include/sound/core.h +++ b/include/sound/core.h | |||
@@ -348,7 +348,7 @@ void __snd_printk(unsigned int level, const char *file, int line, | |||
348 | __attribute__ ((format (printf, 4, 5))); | 348 | __attribute__ ((format (printf, 4, 5))); |
349 | #else | 349 | #else |
350 | #define __snd_printk(level, file, line, format, args...) \ | 350 | #define __snd_printk(level, file, line, format, args...) \ |
351 | prinkt(format, ##args) | 351 | printk(format, ##args) |
352 | #endif | 352 | #endif |
353 | 353 | ||
354 | /** | 354 | /** |