mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 10:58:48 +09:00
FROMGIT: usb: gadget: u_serial: use %*ph to print small buffer
Use %*ph format to print small buffer as hex string.
Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20201228200203.58525-1-andriy.shevchenko@linux.intel.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
(cherry picked from commit 9b3bd89842
https://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb.git usb-next)
Signed-off-by: Greg Kroah-Hartman <gregkh@google.com>
Change-Id: I4d4adce9f9d453ba8ac4dd4607eea5fd2fbe732a
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
1af36b7299
commit
ea1f75fb9f
@@ -258,9 +258,7 @@ __acquires(&port->port_lock)
|
||||
list_del(&req->list);
|
||||
req->zero = kfifo_is_empty(&port->port_write_buf);
|
||||
|
||||
pr_vdebug("ttyGS%d: tx len=%d, 0x%02x 0x%02x 0x%02x ...\n",
|
||||
port->port_num, len, *((u8 *)req->buf),
|
||||
*((u8 *)req->buf+1), *((u8 *)req->buf+2));
|
||||
pr_vdebug("ttyGS%d: tx len=%d, %3ph ...\n", port->port_num, len, req->buf);
|
||||
|
||||
/* Drop lock while we call out of driver; completions
|
||||
* could be issued while we do so. Disconnection may
|
||||
|
||||
Reference in New Issue
Block a user