Fix build with CONFIG_PRINTK disabled.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
Ralf Baechle 2005-06-01 12:18:30 +00:00
parent e50c0a8fa6
commit ac130ac494
1 changed files with 4 additions and 0 deletions

View File

@ -107,6 +107,7 @@ symbol = value
/*
* Print formatted string
*/
#ifdef CONFIG_PRINTK
#define PRINT(string) \
.set push; \
.set reorder; \
@ -114,6 +115,9 @@ symbol = value
jal printk; \
.set pop; \
TEXT(string)
#else
#define PRINT(string)
#endif
#define TEXT(msg) \
.pushsection .data; \