Commit 7db78438 authored by Archana kumari's avatar Archana kumari Committed by Greg Kroah-Hartman

staging:media:lirc: quoted string split across lines

Fix checkpatch.pl issues with quoted string split across lines in lirc_imon.c
Signed-off-by: default avatarArchana kumari <archanakumari959@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 55da06eb
...@@ -619,8 +619,9 @@ static void imon_incoming_packet(struct imon_context *context, ...@@ -619,8 +619,9 @@ 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,
"size (len = %d, intf%d)\n", __func__, len, intf); "imon %s: invalid incoming packet size (len = %d, intf%d)\n",
__func__, len, intf);
return; return;
} }
...@@ -878,8 +879,8 @@ static int imon_probe(struct usb_interface *interface, ...@@ -878,8 +879,8 @@ static int imon_probe(struct usb_interface *interface,
alloc_status = 7; alloc_status = 7;
goto unlock; goto unlock;
} else } else
dev_info(dev, "Registered iMON driver " dev_info(dev, "Registered iMON driver (lirc minor: %d)\n",
"(lirc minor: %d)\n", lirc_minor); lirc_minor);
/* Needed while unregistering! */ /* Needed while unregistering! */
driver->minor = lirc_minor; driver->minor = lirc_minor;
...@@ -923,14 +924,16 @@ static int imon_probe(struct usb_interface *interface, ...@@ -923,14 +924,16 @@ static int imon_probe(struct usb_interface *interface,
if (usb_register_dev(interface, &imon_class)) { if (usb_register_dev(interface, &imon_class)) {
/* Not a fatal error, so ignore */ /* Not a fatal error, so ignore */
dev_info(dev, "%s: could not get a minor number for " dev_info(dev,
"display\n", __func__); "%s: could not get a minor number for display\n"
__func__);
} }
} }
dev_info(dev, "iMON device (%04x:%04x, intf%d) on " dev_info(dev,
"usb<%d:%d> initialized\n", vendor, product, ifnum, "iMON device (%04x:%04x, intf%d) on usb<%d:%d> initialized\n",
usbdev->bus->busnum, usbdev->devnum); vendor, product, ifnum, 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