diff options
author | Suman Anna <s-anna@ti.com> | 2019-08-09 12:27:09 -0400 |
---|---|---|
committer | Bjorn Andersson <bjorn.andersson@linaro.org> | 2019-08-27 01:10:28 -0400 |
commit | 2519fbb39711e5e6696685f29fe049af93c5987c (patch) | |
tree | de368e896ce3a14d65ecf41f51c80bbd1c6bca3a | |
parent | 5f9e832c137075045d15cd6899ab0505cfb2ca4b (diff) |
samples/rpmsg: Replace print_hex_dump() with print_hex_dump_debug()
Replace the raw print_hex_dump() call in the rpmsg_sample_cb() function
with the equivalent print_hex_dump_debug() better suited for dynamic
debug. This switch allows flexibility of controlling this trace through
dynamic debug when enabled.
Signed-off-by: Suman Anna <s-anna@ti.com>
Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
-rw-r--r-- | samples/rpmsg/rpmsg_client_sample.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/samples/rpmsg/rpmsg_client_sample.c b/samples/rpmsg/rpmsg_client_sample.c index 2a0695573b47..b9a99e621a5c 100644 --- a/samples/rpmsg/rpmsg_client_sample.c +++ b/samples/rpmsg/rpmsg_client_sample.c | |||
@@ -29,8 +29,8 @@ static int rpmsg_sample_cb(struct rpmsg_device *rpdev, void *data, int len, | |||
29 | dev_info(&rpdev->dev, "incoming msg %d (src: 0x%x)\n", | 29 | dev_info(&rpdev->dev, "incoming msg %d (src: 0x%x)\n", |
30 | ++idata->rx_count, src); | 30 | ++idata->rx_count, src); |
31 | 31 | ||
32 | print_hex_dump(KERN_DEBUG, __func__, DUMP_PREFIX_NONE, 16, 1, | 32 | print_hex_dump_debug(__func__, DUMP_PREFIX_NONE, 16, 1, data, len, |
33 | data, len, true); | 33 | true); |
34 | 34 | ||
35 | /* samples should not live forever */ | 35 | /* samples should not live forever */ |
36 | if (idata->rx_count >= MSG_LIMIT) { | 36 | if (idata->rx_count >= MSG_LIMIT) { |