Commit c32678ea authored by Antonio Cardace's avatar Antonio Cardace Committed by Mauro Carvalho Chehab

media: gspca: dtcs033: use %*ph to print small buffer

Use %*ph format to print small buffer as hex string.

Remove newline at the end of the format string as it would be duplicated
by the one supplied as last argument.
Suggested-by: default avatarAndy Shevchenko <andriy.shevchenko@linux.intel.com>
Signed-off-by: default avatarAntonio Cardace <anto.cardace@gmail.com>
Signed-off-by: default avatarHans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab@s-opensource.com>
parent ed356f11
...@@ -76,12 +76,10 @@ static int reg_reqs(struct gspca_dev *gspca_dev, ...@@ -76,12 +76,10 @@ static int reg_reqs(struct gspca_dev *gspca_dev,
} else if (preq->bRequestType & USB_DIR_IN) { } else if (preq->bRequestType & USB_DIR_IN) {
gspca_dbg(gspca_dev, D_STREAM, gspca_dbg(gspca_dev, D_STREAM,
"USB IN (%d) returned[%d] %02X %02X %02X %s\n", "USB IN (%d) returned[%d] %3ph %s",
i, i,
preq->wLength, preq->wLength,
gspca_dev->usb_buf[0], gspca_dev->usb_buf,
gspca_dev->usb_buf[1],
gspca_dev->usb_buf[2],
preq->wLength > 3 ? "...\n" : "\n"); preq->wLength > 3 ? "...\n" : "\n");
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment