|
@@ -321,8 +321,13 @@ extern void hex_dump_to_buffer(const void *buf, size_t len,
|
|
|
extern void print_hex_dump(const char *level, const char *prefix_str,
|
|
|
int prefix_type, int rowsize, int groupsize,
|
|
|
const void *buf, size_t len, bool ascii);
|
|
|
+#if defined(CONFIG_DYNAMIC_DEBUG)
|
|
|
+#define print_hex_dump_bytes(prefix_str, prefix_type, buf, len) \
|
|
|
+ dynamic_hex_dump(prefix_str, prefix_type, 16, 1, buf, len, true)
|
|
|
+#else
|
|
|
extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
|
|
|
const void *buf, size_t len);
|
|
|
+#endif /* defined(CONFIG_DYNAMIC_DEBUG) */
|
|
|
#else
|
|
|
static inline void print_hex_dump(const char *level, const char *prefix_str,
|
|
|
int prefix_type, int rowsize, int groupsize,
|
|
@@ -336,4 +341,16 @@ static inline void print_hex_dump_bytes(const char *prefix_str, int prefix_type,
|
|
|
|
|
|
#endif
|
|
|
|
|
|
+#if defined(CONFIG_DYNAMIC_DEBUG)
|
|
|
+#define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
|
|
|
+ groupsize, buf, len, ascii) \
|
|
|
+ dynamic_hex_dump(prefix_str, prefix_type, rowsize, \
|
|
|
+ groupsize, buf, len, ascii)
|
|
|
+#else
|
|
|
+#define print_hex_dump_debug(prefix_str, prefix_type, rowsize, \
|
|
|
+ groupsize, buf, len, ascii) \
|
|
|
+ print_hex_dump(KERN_DEBUG, prefix_str, prefix_type, rowsize, \
|
|
|
+ groupsize, buf, len, ascii)
|
|
|
+#endif /* defined(CONFIG_DYNAMIC_DEBUG) */
|
|
|
+
|
|
|
#endif
|