All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Kirill A. Shutemov" <kirill@shutemov.name>
To: Yuri Matylitski <ym@tekinsoft.com>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	Johan Hovold <jhovold@gmail.com>,
	Preston Fick <preston.fick@silabs.com>,
	Rusty Russell <rusty@rustcorp.com.au>,
	linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH] Fixed too small hardcoded timeout values for usb_control_msg in driver for SiliconLabs cp210x-based usb-to-serial adapters. Replaced with USB_CTRL_GET_TIMEOUT/USB_CTRL_SET_TIMEOUT.
Date: Fri, 20 Apr 2012 12:04:57 +0300	[thread overview]
Message-ID: <20120420090457.GA23077@shutemov.name> (raw)
In-Reply-To: <1334910722-7357-1-git-send-email-ym@tekinsoft.com>

On Fri, Apr 20, 2012 at 11:32:02AM +0300, Yuri Matylitski wrote:

The first line of the commit message (which is in Subject) should be a
short summary of the change. More detailed description should be added
after an empty line.

More commit message hints:

http://who-t.blogspot.com/2009/12/on-commit-messages.html

Otherwise:

Acked-by: Kirill A. Shutemov <kirill@shutemov.name>

> Signed-off-by: Yuri Matylitski <ym@tekinsoft.com>
> ---
>  drivers/usb/serial/cp210x.c |    9 ++++++---
>  1 files changed, 6 insertions(+), 3 deletions(-)
> 
> diff --git a/drivers/usb/serial/cp210x.c b/drivers/usb/serial/cp210x.c
> index 0310e2d..e56066b 100644
> --- a/drivers/usb/serial/cp210x.c
> +++ b/drivers/usb/serial/cp210x.c
> @@ -287,7 +287,8 @@ static int cp210x_get_config(struct usb_serial_port *port, u8 request,
>  	/* Issue the request, attempting to read 'size' bytes */
>  	result = usb_control_msg(serial->dev, usb_rcvctrlpipe(serial->dev, 0),
>  				request, REQTYPE_DEVICE_TO_HOST, 0x0000,
> -				port_priv->bInterfaceNumber, buf, size, 300);
> +				port_priv->bInterfaceNumber, buf, size,
> +				USB_CTRL_GET_TIMEOUT);
>  
>  	/* Convert data into an array of integers */
>  	for (i = 0; i < length; i++)
> @@ -340,12 +341,14 @@ static int cp210x_set_config(struct usb_serial_port *port, u8 request,
>  		result = usb_control_msg(serial->dev,
>  				usb_sndctrlpipe(serial->dev, 0),
>  				request, REQTYPE_HOST_TO_DEVICE, 0x0000,
> -				port_priv->bInterfaceNumber, buf, size, 300);
> +				port_priv->bInterfaceNumber, buf, size,
> +				USB_CTRL_SET_TIMEOUT);
>  	} else {
>  		result = usb_control_msg(serial->dev,
>  				usb_sndctrlpipe(serial->dev, 0),
>  				request, REQTYPE_HOST_TO_DEVICE, data[0],
> -				port_priv->bInterfaceNumber, NULL, 0, 300);
> +				port_priv->bInterfaceNumber, NULL, 0,
> +				USB_CTRL_SET_TIMEOUT);
>  	}
>  
>  	kfree(buf);
> -- 
> 1.7.0.4
> 

-- 
 Kirill A. Shutemov

  reply	other threads:[~2012-04-20  9:04 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-04-20  8:32 [PATCH] Fixed too small hardcoded timeout values for usb_control_msg in driver for SiliconLabs cp210x-based usb-to-serial adapters. Replaced with USB_CTRL_GET_TIMEOUT/USB_CTRL_SET_TIMEOUT Yuri Matylitski
2012-04-20  9:04 ` Kirill A. Shutemov [this message]
2012-04-20  9:38 ` [PATCH] Fixed usb_control_msg timeout values in cp210x driver Yuri Matylitski
2012-04-20 11:34 ` [PATCH] Fixed too small hardcoded timeout values for usb_control_msg in driver for SiliconLabs cp210x-based usb-to-serial adapters. Replaced with USB_CTRL_GET_TIMEOUT/USB_CTRL_SET_TIMEOUT Sergei Shtylyov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20120420090457.GA23077@shutemov.name \
    --to=kirill@shutemov.name \
    --cc=gregkh@linuxfoundation.org \
    --cc=jhovold@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-usb@vger.kernel.org \
    --cc=preston.fick@silabs.com \
    --cc=rusty@rustcorp.com.au \
    --cc=ym@tekinsoft.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.