diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-06-01 12:18:30 +0000 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 19:31:18 +0100 |
commit | ac130ac494522cf71782117b8dd4b6b57e31e5ea (patch) | |
tree | d0118012514a51c192203e7b639bb3aa17635d3e /include/asm-mips/asm.h | |
parent | e50c0a8fa60da9ac0e0a70caa8a3a803815c1f2f (diff) | |
download | linux-3.10-ac130ac494522cf71782117b8dd4b6b57e31e5ea.tar.gz linux-3.10-ac130ac494522cf71782117b8dd4b6b57e31e5ea.tar.bz2 linux-3.10-ac130ac494522cf71782117b8dd4b6b57e31e5ea.zip |
Fix build with CONFIG_PRINTK disabled.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'include/asm-mips/asm.h')
-rw-r--r-- | include/asm-mips/asm.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/asm-mips/asm.h b/include/asm-mips/asm.h index f5323777298..4b090f3142e 100644 --- a/include/asm-mips/asm.h +++ b/include/asm-mips/asm.h @@ -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; \ |