diff options
author | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2007-08-07 16:34:20 -0400 |
---|---|---|
committer | Artem Bityutskiy <Artem.Bityutskiy@nokia.com> | 2007-10-14 06:10:20 -0400 |
commit | ef6075fbfca9139f428d52d60e671da38aa2e212 (patch) | |
tree | 077b0265e67e46e09f6d3dcf35a45fbbe6e20748 /drivers/mtd/ubi/io.c | |
parent | 0169b49d52400a6035cd0f2ccd08bcba061a1a9b (diff) |
UBI: use linux print_hex_dump(), not home-grown one
Signed-off-by: Artem Bityutskiy <Artem.Bityutskiy@nokia.com>
Diffstat (limited to 'drivers/mtd/ubi/io.c')
-rw-r--r-- | drivers/mtd/ubi/io.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/ubi/io.c b/drivers/mtd/ubi/io.c index d42ec687b014..928476394d55 100644 --- a/drivers/mtd/ubi/io.c +++ b/drivers/mtd/ubi/io.c | |||
@@ -1252,7 +1252,7 @@ static int paranoid_check_all_ff(const struct ubi_device *ubi, int pnum, | |||
1252 | fail: | 1252 | fail: |
1253 | ubi_err("paranoid check failed for PEB %d", pnum); | 1253 | ubi_err("paranoid check failed for PEB %d", pnum); |
1254 | dbg_msg("hex dump of the %d-%d region", offset, offset + len); | 1254 | dbg_msg("hex dump of the %d-%d region", offset, offset + len); |
1255 | ubi_dbg_hexdump(buf, len); | 1255 | print_hex_dump(KERN_DEBUG, "", DUMP_PREFIX_OFFSET, 32, 4, buf, len, 1); |
1256 | err = 1; | 1256 | err = 1; |
1257 | error: | 1257 | error: |
1258 | ubi_dbg_dump_stack(); | 1258 | ubi_dbg_dump_stack(); |