VisionFive2 Linux kernel

StarFive Tech Linux Kernel for VisionFive (JH7110) boards (mirror)

More than 9999 Commits   33 Branches   57 Tags
author: Joe Perches <joe@perches.com> 2011-01-12 16:59:47 -0800 committer: Linus Torvalds <torvalds@linux-foundation.org> 2011-01-13 08:03:10 -0800 commit: ac83ed687837a44c6e46fb16411fb0d299fffd80 parent: 16cb839f13324978bd58082e69de81a711802b11
Commit Summary:
include/linux/printk.h lib/hexdump.c: neatening and add CONFIG_PRINTK guard
Diffstat:
1 file changed, 2 insertions, 0 deletions
diff --git a/lib/hexdump.c b/lib/hexdump.c
index b66b2bd67952..f5fe6ba7a3ab 100644
--- a/lib/hexdump.c
+++ b/lib/hexdump.c
@@ -154,6 +154,7 @@ nil:
 }
 EXPORT_SYMBOL(hex_dump_to_buffer);
 
+#ifdef CONFIG_PRINTK
 /**
  * print_hex_dump - print a text hex dump to syslog for a binary blob of data
  * @level: kernel log level (e.g. KERN_DEBUG)
@@ -238,3 +239,4 @@ void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
 		       buf, len, true);
 }
 EXPORT_SYMBOL(print_hex_dump_bytes);
+#endif