From: Greg Kroah-Hartman Date: Tue, 15 Oct 2013 16:40:57 +0000 (-0700) Subject: Revert "staging:media:lirc: quoted string split across lines" X-Git-Tag: v3.13-rc1~170^2~275 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=dc070641ee2df26da60fa9a1cbe446ee59ce4f0e;p=kernel%2Fkernel-generic.git Revert "staging:media:lirc: quoted string split across lines" This reverts commit 7db78438d932d12afda5f367cfcb56337457e037. It broke the build, and isn't ok. Cc: Archana kumari Cc: Thierry Reding Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/media/lirc/lirc_imon.c b/drivers/staging/media/lirc/lirc_imon.c index 8180187..4afa7da 100644 --- a/drivers/staging/media/lirc/lirc_imon.c +++ b/drivers/staging/media/lirc/lirc_imon.c @@ -619,9 +619,8 @@ static void imon_incoming_packet(struct imon_context *context, return; if (len != 8) { - dev_warn(dev, - "imon %s: invalid incoming packet size (len = %d, intf%d)\n", - __func__, len, intf); + dev_warn(dev, "imon %s: invalid incoming packet " + "size (len = %d, intf%d)\n", __func__, len, intf); return; } @@ -879,8 +878,8 @@ static int imon_probe(struct usb_interface *interface, alloc_status = 7; goto unlock; } else - dev_info(dev, "Registered iMON driver (lirc minor: %d)\n", - lirc_minor); + dev_info(dev, "Registered iMON driver " + "(lirc minor: %d)\n", lirc_minor); /* Needed while unregistering! */ driver->minor = lirc_minor; @@ -924,16 +923,14 @@ static int imon_probe(struct usb_interface *interface, if (usb_register_dev(interface, &imon_class)) { /* Not a fatal error, so ignore */ - dev_info(dev, - "%s: could not get a minor number for display\n" - __func__); + dev_info(dev, "%s: could not get a minor number for " + "display\n", __func__); } } - dev_info(dev, - "iMON device (%04x:%04x, intf%d) on usb<%d:%d> initialized\n", - vendor, product, ifnum, usbdev->bus->busnum, - usbdev->devnum); + dev_info(dev, "iMON device (%04x:%04x, intf%d) on " + "usb<%d:%d> initialized\n", vendor, product, ifnum, + usbdev->bus->busnum, usbdev->devnum); unlock: mutex_unlock(&context->ctx_lock);