diff options
-rw-r--r-- | include/linux/kernel.h | 2 | ||||
-rw-r--r-- | lib/hexdump.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index b4f5b81b4257..f592df74b3cf 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
@@ -226,7 +226,7 @@ extern void print_hex_dump(const char *level, const char *prefix_str, | |||
226 | int prefix_type, int rowsize, int groupsize, | 226 | int prefix_type, int rowsize, int groupsize, |
227 | const void *buf, size_t len, bool ascii); | 227 | const void *buf, size_t len, bool ascii); |
228 | extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type, | 228 | extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type, |
229 | void *buf, size_t len); | 229 | const void *buf, size_t len); |
230 | #define hex_asc(x) "0123456789abcdef"[x] | 230 | #define hex_asc(x) "0123456789abcdef"[x] |
231 | 231 | ||
232 | #ifdef DEBUG | 232 | #ifdef DEBUG |
diff --git a/lib/hexdump.c b/lib/hexdump.c index 16f2e2935e87..bd5edaeaa80b 100644 --- a/lib/hexdump.c +++ b/lib/hexdump.c | |||
@@ -189,7 +189,7 @@ EXPORT_SYMBOL(print_hex_dump); | |||
189 | * rowsize of 16, groupsize of 1, and ASCII output included. | 189 | * rowsize of 16, groupsize of 1, and ASCII output included. |
190 | */ | 190 | */ |
191 | void print_hex_dump_bytes(const char *prefix_str, int prefix_type, | 191 | void print_hex_dump_bytes(const char *prefix_str, int prefix_type, |
192 | void *buf, size_t len) | 192 | const void *buf, size_t len) |
193 | { | 193 | { |
194 | print_hex_dump(KERN_DEBUG, prefix_str, prefix_type, 16, 1, | 194 | print_hex_dump(KERN_DEBUG, prefix_str, prefix_type, 16, 1, |
195 | buf, len, 1); | 195 | buf, len, 1); |