OLPC: Use %*ph specifier instead of passing direct values
authorAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Mon, 29 Dec 2014 12:26:50 +0000 (14:26 +0200)
committerDarren Hart <dvhart@linux.intel.com>
Tue, 6 Oct 2015 22:22:08 +0000 (23:22 +0100)
The %*ph specifier allows to dump small buffers in hex format. Let's use it
instead of passing direct values via stack.

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Acked-by: Paul Fox <pgf@laptop.org>
Signed-off-by: Darren Hart <dvhart@linux.intel.com>
drivers/platform/olpc/olpc-ec.c

index f9119525f5570c2d041d563c0eefbc9a01e32c20..f99b183d5296f7981c9cfbf3bb25d5f5c236e46f 100644 (file)
@@ -192,18 +192,15 @@ static ssize_t ec_dbgfs_cmd_write(struct file *file, const char __user *buf,
        for (i = 0; i <= ec_cmd_bytes; i++)
                ec_cmd[i] = ec_cmd_int[i];
 
-       pr_debug("olpc-ec: debugfs cmd 0x%02x with %d args %02x %02x %02x %02x %02x, want %d returns\n",
-                       ec_cmd[0], ec_cmd_bytes, ec_cmd[1], ec_cmd[2],
-                       ec_cmd[3], ec_cmd[4], ec_cmd[5], ec_dbgfs_resp_bytes);
+       pr_debug("olpc-ec: debugfs cmd 0x%02x with %d args %5ph, want %d returns\n",
+                       ec_cmd[0], ec_cmd_bytes, ec_cmd + 1,
+                       ec_dbgfs_resp_bytes);
 
        olpc_ec_cmd(ec_cmd[0], (ec_cmd_bytes == 0) ? NULL : &ec_cmd[1],
                        ec_cmd_bytes, ec_dbgfs_resp, ec_dbgfs_resp_bytes);
 
-       pr_debug("olpc-ec: response %02x %02x %02x %02x %02x %02x %02x %02x (%d bytes expected)\n",
-                       ec_dbgfs_resp[0], ec_dbgfs_resp[1], ec_dbgfs_resp[2],
-                       ec_dbgfs_resp[3], ec_dbgfs_resp[4], ec_dbgfs_resp[5],
-                       ec_dbgfs_resp[6], ec_dbgfs_resp[7],
-                       ec_dbgfs_resp_bytes);
+       pr_debug("olpc-ec: response %8ph (%d bytes expected)\n",
+                       ec_dbgfs_resp, ec_dbgfs_resp_bytes);
 
 out:
        mutex_unlock(&ec_dbgfs_lock);