[CRYPTO] tcrypt: Use print_hex_dump from linux/kernel.h

These utilities implemented in lib/hexdump.c are more handy, please use this.

Signed-off-by: Denis Cheng <crquan@gmail.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Denis Cheng 2007-11-30 16:59:30 +11:00 committed by Herbert Xu
parent d2456c6623
commit a10e11946b
1 changed files with 3 additions and 4 deletions

View File

@ -89,10 +89,9 @@ static char *check[] = {
static void hexdump(unsigned char *buf, unsigned int len) static void hexdump(unsigned char *buf, unsigned int len)
{ {
while (len--) print_hex_dump(KERN_CONT, "", DUMP_PREFIX_OFFSET,
printk("%02x", *buf++); 16, 1,
buf, len, false);
printk("\n");
} }
static void tcrypt_complete(struct crypto_async_request *req, int err) static void tcrypt_complete(struct crypto_async_request *req, int err)