staging: media: lirc: Fixed quoted string split warning.
authorGulsah Kose <gulsah.1004@gmail.com>
Sun, 21 Sep 2014 19:26:02 +0000 (22:26 +0300)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 23 Sep 2014 18:05:41 +0000 (11:05 -0700)
This patch fixes "quoted string split across lines" checkpatch.pl
warning in lirc_imon.c.

Signed-off-by: Gulsah Kose <gulsah.1004@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/media/lirc/lirc_imon.c

index 06ec24cb23b3d323f94a654e99ebfa24d7dfa406..726cc3a31856673952525e0343fa0be95d7f41ec 100644 (file)
@@ -614,8 +614,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;
        }
 
@@ -924,9 +924,8 @@ static int imon_probe(struct usb_interface *interface,
                }
        }
 
-       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);
This page took 0.026253 seconds and 5 git commands to generate.