Commit abb0bdad authored by Gulsah Kose's avatar Gulsah Kose Committed by Greg Kroah-Hartman

staging: media: lirc: Fixed quoted string split warning.

This patch fixes "quoted string split across lines" checkpatch.pl
warning in lirc_imon.c.
Signed-off-by: default avatarGulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 00ef07e3
...@@ -614,8 +614,8 @@ static void imon_incoming_packet(struct imon_context *context, ...@@ -614,8 +614,8 @@ static void imon_incoming_packet(struct imon_context *context,
return; return;
if (len != 8) { if (len != 8) {
dev_warn(dev, "imon %s: invalid incoming packet " dev_warn(dev, "imon %s: invalid incoming packet size (len = %d, intf%d)\n",
"size (len = %d, intf%d)\n", __func__, len, intf); __func__, len, intf);
return; return;
} }
...@@ -924,9 +924,8 @@ static int imon_probe(struct usb_interface *interface, ...@@ -924,9 +924,8 @@ static int imon_probe(struct usb_interface *interface,
} }
} }
dev_info(dev, "iMON device (%04x:%04x, intf%d) on " dev_info(dev, "iMON device (%04x:%04x, intf%d) on usb<%d:%d> initialized\n",
"usb<%d:%d> initialized\n", vendor, product, ifnum, vendor, product, ifnum, usbdev->bus->busnum, usbdev->devnum);
usbdev->bus->busnum, usbdev->devnum);
unlock: unlock:
mutex_unlock(&context->ctx_lock); mutex_unlock(&context->ctx_lock);
......
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