On Tue, 2007-11-27 at 01:31 -0800, Andrew Morton wrote:
Perhaps an even simpler generic version of what's
now used in crypto/tcrypt.c:
void print_cont_hex_dump_bytes(const void *buf, size_t len)
{
print_hex_dump(KERN_CONT, "", DUMP_PREFIX_NONE,
16, 1, buf, len, false);
}
or just use print_hex_dump_bytes.
-