Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1592383 > unrolled thread
| Started by | Milian Reichardt <mreichardt95@gmail.com> |
|---|---|
| First post | 2017-03-04 03:50 +0100 |
| Last post | 2017-03-04 03:50 +0100 |
| Articles | 1 — 1 participant |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH 3/3] USB: misc: ldusb: Added Space after ',' to fit the coding style Milian Reichardt <mreichardt95@gmail.com> - 2017-03-04 03:50 +0100
| From | Milian Reichardt <mreichardt95@gmail.com> |
|---|---|
| Date | 2017-03-04 03:50 +0100 |
| Subject | [PATCH 3/3] USB: misc: ldusb: Added Space after ',' to fit the coding style |
| Message-ID | <th7VD-1WL-9@gated-at.bofh.it> |
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> --- drivers/usb/misc/ldusb.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/usb/misc/ldusb.c b/drivers/usb/misc/ldusb.c index 2c68e5153539..77b76b468307 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, /* write the data into interrupt_out_buffer from userspace */ bytes_to_write = min(count, write_buffer_size*dev->interrupt_out_endpoint_size); if (bytes_to_write < count) - dev_warn(&dev->intf->dev, "Write buffer overflow, %zd bytes dropped\n",count-bytes_to_write); + dev_warn(&dev->intf->dev, "Write buffer overflow, %zd bytes dropped\n", count-bytes_to_write); dev_dbg(&dev->intf->dev, "%s: count = %zd, bytes_to_write = %zd\n", __func__, count, bytes_to_write); -- 2.12.0
Back to top | Article view | linux.kernel
csiph-web