aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/misc/ldusb.c
diff options
context:
space:
mode:
authorMilian Reichardt <mreichardt95@gmail.com>2017-03-03 21:42:34 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2017-03-17 00:27:41 -0400
commite314621b4779f67b17a9a46743e3067c98d1febf (patch)
tree752c52926fe30cf9249e1e688758f289ba75f9c0 /drivers/usb/misc/ldusb.c
parent3d1a4673d87689f1822f395b2ed03b0a3ff126ab (diff)
USB: misc: ldusb: Added Space after ',' to fit the coding style
Added a Space after ',' to get rid of an error message in checkpatch.pl and improve readability Signed-of-by: Milian Reichardt <mreichardt95@gmail.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/misc/ldusb.c')
-rw-r--r--drivers/usb/misc/ldusb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/usb/misc/ldusb.c b/drivers/usb/misc/ldusb.c
index e965ed24bb37..4dcc346bb97a 100644
--- a/drivers/usb/misc/ldusb.c
+++ b/drivers/usb/misc/ldusb.c
@@ -561,7 +561,7 @@ static ssize_t ld_usb_write(struct file *file, const char __user *buffer,
561 /* write the data into interrupt_out_buffer from userspace */ 561 /* write the data into interrupt_out_buffer from userspace */
562 bytes_to_write = min(count, write_buffer_size*dev->interrupt_out_endpoint_size); 562 bytes_to_write = min(count, write_buffer_size*dev->interrupt_out_endpoint_size);
563 if (bytes_to_write < count) 563 if (bytes_to_write < count)
564 dev_warn(&dev->intf->dev, "Write buffer overflow, %zd bytes dropped\n",count-bytes_to_write); 564 dev_warn(&dev->intf->dev, "Write buffer overflow, %zd bytes dropped\n", count-bytes_to_write);
565 dev_dbg(&dev->intf->dev, "%s: count = %zd, bytes_to_write = %zd\n", 565 dev_dbg(&dev->intf->dev, "%s: count = %zd, bytes_to_write = %zd\n",
566 __func__, count, bytes_to_write); 566 __func__, count, bytes_to_write);
567 567