samples/rpmsg: Replace print_hex_dump() with print_hex_dump_debug()
[linux-2.6-microblaze.git] / samples / rpmsg / rpmsg_client_sample.c
index 2a06955..b9a99e6 100644 (file)
@@ -29,8 +29,8 @@ static int rpmsg_sample_cb(struct rpmsg_device *rpdev, void *data, int len,
        dev_info(&rpdev->dev, "incoming msg %d (src: 0x%x)\n",
                 ++idata->rx_count, src);
 
-       print_hex_dump(KERN_DEBUG, __func__, DUMP_PREFIX_NONE, 16, 1,
-                      data, len,  true);
+       print_hex_dump_debug(__func__, DUMP_PREFIX_NONE, 16, 1, data, len,
+                            true);
 
        /* samples should not live forever */
        if (idata->rx_count >= MSG_LIMIT) {