Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753605AbcD2Mwl (ORCPT ); Fri, 29 Apr 2016 08:52:41 -0400 Received: from mail-lf0-f67.google.com ([209.85.215.67]:33013 "EHLO mail-lf0-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753094AbcD2Mwi (ORCPT ); Fri, 29 Apr 2016 08:52:38 -0400 Date: Fri, 29 Apr 2016 14:52:39 +0200 From: Johan Hovold To: Grigori Goronzy Cc: Johan Hovold , Greg Kroah-Hartman , linux-usb@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v4 04/13] USB: ch341: fix USB buffer allocations Message-ID: <20160429125239.GH22229@localhost> References: <1460754856-27908-1-git-send-email-greg@chown.ath.cx> <1460754856-27908-5-git-send-email-greg@chown.ath.cx> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1460754856-27908-5-git-send-email-greg@chown.ath.cx> User-Agent: Mutt/1.5.24 (2015-08-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1405 Lines: 46 On Fri, Apr 15, 2016 at 11:14:07PM +0200, Grigori Goronzy wrote: > Use the correct types and sizes. > > v2: use u8 shorthand for unsigned char. Pleas place commit logs below the cut-off line (---). > Signed-off-by: Grigori Goronzy > --- > drivers/usb/serial/ch341.c | 10 +++++----- > 1 file changed, 5 insertions(+), 5 deletions(-) > > diff --git a/drivers/usb/serial/ch341.c b/drivers/usb/serial/ch341.c > index db4b561..95c8a40 100644 > --- a/drivers/usb/serial/ch341.c > +++ b/drivers/usb/serial/ch341.c > @@ -115,7 +115,7 @@ static int ch341_control_out(struct usb_device *dev, u8 request, > > static int ch341_control_in(struct usb_device *dev, > u8 request, u16 value, u16 index, > - char *buf, unsigned bufsize) > + u8 *buf, unsigned bufsize) Just use void * for the buffer parameter. > { > int r; > > @@ -168,9 +168,9 @@ static int ch341_set_handshake(struct usb_device *dev, u8 control) > > static int ch341_get_status(struct usb_device *dev, struct ch341_private *priv) > { > - char *buffer; > + unsigned char *buffer; > int r; > - const unsigned size = 8; > + const unsigned size = 2; Did you reply to Oliver's comment about this change? Are you sure this won't break some old device expecting to be asked for eight bytes even if only two are returned? I suggest breaking this out into a separate patch either way. Thanks, Johan