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: Gulsah Kose <gulsah.1004@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
00ef07e362
commit
abb0bdad0c
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user