The patch titled hex_dump: add missing "const" qualifiers has been removed from the -mm tree. Its filename was hex_dump-add-missing-const-qualifiers.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: hex_dump: add missing "const" qualifiers From: Alan Stern <stern@xxxxxxxxxxxxxxxxxxx> Add missing "const" qualifiers to the print_hex_dump_bytes() library routines. (akpm: rumoured to fix some compile warning somewhere) Signed-off-by: Alan Stern <stern@xxxxxxxxxxxxxxxxxxx> Cc: Artem Bityutskiy <Artem.Bityutskiy@xxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- include/linux/kernel.h | 2 +- lib/hexdump.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff -puN include/linux/kernel.h~hex_dump-add-missing-const-qualifiers include/linux/kernel.h --- a/include/linux/kernel.h~hex_dump-add-missing-const-qualifiers +++ a/include/linux/kernel.h @@ -226,7 +226,7 @@ extern void print_hex_dump(const char *l int prefix_type, int rowsize, int groupsize, const void *buf, size_t len, bool ascii); extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type, - void *buf, size_t len); + const void *buf, size_t len); #define hex_asc(x) "0123456789abcdef"[x] #ifdef DEBUG diff -puN lib/hexdump.c~hex_dump-add-missing-const-qualifiers lib/hexdump.c --- a/lib/hexdump.c~hex_dump-add-missing-const-qualifiers +++ a/lib/hexdump.c @@ -189,7 +189,7 @@ EXPORT_SYMBOL(print_hex_dump); * rowsize of 16, groupsize of 1, and ASCII output included. */ void print_hex_dump_bytes(const char *prefix_str, int prefix_type, - void *buf, size_t len) + const void *buf, size_t len) { print_hex_dump(KERN_DEBUG, prefix_str, prefix_type, 16, 1, buf, len, 1); _ Patches currently in -mm which might be from stern@xxxxxxxxxxxxxxxxxxx are git-avr32.patch usb-enable-hcd-support-on-sh-unconditionally.patch usb-r8a66597-hcd-clean-up-error-path.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html