diff options
author | Linus Walleij <linus.walleij@linaro.org> | 2017-05-15 05:44:05 -0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2017-07-06 03:29:11 -0400 |
commit | 6ae0cc90d9e7c026d0a342403f0cd559f743edab (patch) | |
tree | 3525e175e6f569da55bd9d06be1cf14495bff062 | |
parent | b418bbff36dd25dc49ed6abbb1e1deedd0d7cff5 (diff) |
mfd: ipaq-micro: Dump debugging hexdumps
These hexdumps get printed no matter if CONFIG_DEBUG is set or
not. Just get rid of them.
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
-rw-r--r-- | drivers/mfd/ipaq-micro.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/drivers/mfd/ipaq-micro.c b/drivers/mfd/ipaq-micro.c index 124aad2b1d02..cd762d08f116 100644 --- a/drivers/mfd/ipaq-micro.c +++ b/drivers/mfd/ipaq-micro.c | |||
@@ -53,8 +53,6 @@ static void ipaq_micro_trigger_tx(struct ipaq_micro *micro) | |||
53 | tx->buf[bp++] = checksum; | 53 | tx->buf[bp++] = checksum; |
54 | tx->len = bp; | 54 | tx->len = bp; |
55 | tx->index = 0; | 55 | tx->index = 0; |
56 | print_hex_dump_debug("data: ", DUMP_PREFIX_OFFSET, 16, 1, | ||
57 | tx->buf, tx->len, true); | ||
58 | 56 | ||
59 | /* Enable interrupt */ | 57 | /* Enable interrupt */ |
60 | val = readl(micro->base + UTCR3); | 58 | val = readl(micro->base + UTCR3); |
@@ -281,9 +279,6 @@ static void __init ipaq_micro_eeprom_dump(struct ipaq_micro *micro) | |||
281 | dev_info(micro->dev, "RAM size: %u KiB\n", ipaq_micro_to_u16(dump+92)); | 279 | dev_info(micro->dev, "RAM size: %u KiB\n", ipaq_micro_to_u16(dump+92)); |
282 | dev_info(micro->dev, "screen: %u x %u\n", | 280 | dev_info(micro->dev, "screen: %u x %u\n", |
283 | ipaq_micro_to_u16(dump+94), ipaq_micro_to_u16(dump+96)); | 281 | ipaq_micro_to_u16(dump+94), ipaq_micro_to_u16(dump+96)); |
284 | print_hex_dump_debug("eeprom: ", DUMP_PREFIX_OFFSET, 16, 1, | ||
285 | dump, 256, true); | ||
286 | |||
287 | } | 282 | } |
288 | 283 | ||
289 | static void micro_tx_chars(struct ipaq_micro *micro) | 284 | static void micro_tx_chars(struct ipaq_micro *micro) |