diff mbox series

USB: serial: cp210x: Enables usb generic functions for throttle/unthrottle to prevent USB data loss.

Message ID D6486D05-4E0F-4CDF-B178-C386A9075032@silabs.com (mailing list archive)
State New, archived
Headers show
Series USB: serial: cp210x: Enables usb generic functions for throttle/unthrottle to prevent USB data loss. | expand

Commit Message

Brant Merryman Dec. 18, 2019, 6:55 p.m. UTC
USB: serial: cp210x: Enables usb generic functions for
 throttle/unthrottle to prevent USB data loss.

Signed-off-by: Brant Merryman <brant.merryman@silabs.com>
---
 drivers/usb/serial/cp210x.c | 2 ++
 1 file changed, 2 insertions(+)

--

Comments

Johan Hovold Jan. 7, 2020, 10:32 a.m. UTC | #1
On Wed, Dec 18, 2019 at 06:55:04PM +0000, Brant Merryman wrote:
> USB: serial: cp210x: Enables usb generic functions for
>  throttle/unthrottle to prevent USB data loss.

Please resubmit this with a short summary (Subject, < 80 chars) and
separate commit message (body). Try to explain why this is needed a bit
more verbosely.

> Signed-off-by: Brant Merryman <brant.merryman@silabs.com>
> ---

Also always include a changelog here (after "---") when you update
patches, and indicate the patch revision in the Subject prefix (e.g.
this should have been "[PATCH v2]".

Since the two patches you sent are related, you should submit them in a
series. Take a look at git-format-patch and git-send-email for one way
of doing that, more details can be found in:

	Documentation/process/submitting-patches.rst

Let's get you up to speed on the process now, so that we don't have to
deal with that bit for your future contributions.

Johan
diff mbox series

Patch

diff --git a/drivers/usb/serial/cp210x.c b/drivers/usb/serial/cp210x.c
index f5143eedbc48..bcceb4ad8be0 100644
--- a/drivers/usb/serial/cp210x.c
+++ b/drivers/usb/serial/cp210x.c
@@ -272,6 +272,8 @@  static struct usb_serial_driver cp210x_device = {
 	.break_ctl		= cp210x_break_ctl,
 	.set_termios		= cp210x_set_termios,
 	.tx_empty		= cp210x_tx_empty,
+	.throttle		= usb_serial_generic_throttle,
+	.unthrottle		= usb_serial_generic_unthrottle,
 	.tiocmget		= cp210x_tiocmget,
 	.tiocmset		= cp210x_tiocmset,
 	.attach			= cp210x_attach,