[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20150817111625.GE7053@localhost>
Date: Mon, 17 Aug 2015 13:16:25 +0200
From: Johan Hovold <johan@...nel.org>
To: "Karajgaonkar, Saurabh (S.)" <skarajga@...teon.com>
Cc: "srinivas.kandagatla@...il.com" <srinivas.kandagatla@...il.com>,
"maxime.coquelin@...com" <maxime.coquelin@...com>,
"patrice.chotard@...com" <patrice.chotard@...com>,
"stern@...land.harvard.edu" <stern@...land.harvard.edu>,
"gregkh@...uxfoundation.org" <gregkh@...uxfoundation.org>,
"mathias.nyman@...el.com" <mathias.nyman@...el.com>,
"balbi@...com" <balbi@...com>,
"johan@...nel.org" <johan@...nel.org>,
"sergei.shtylyov@...entembedded.com"
<sergei.shtylyov@...entembedded.com>,
"Julia.Lawall@...6.fr" <Julia.Lawall@...6.fr>,
"khilman@...aro.org" <khilman@...aro.org>,
"rafael.j.wysocki@...el.com" <rafael.j.wysocki@...el.com>,
"pmladek@...e.cz" <pmladek@...e.cz>,
"wsa@...-dreams.de" <wsa@...-dreams.de>,
"linux-arm-kernel@...ts.infradead.org"
<linux-arm-kernel@...ts.infradead.org>,
"kernel@...inux.com" <kernel@...inux.com>,
"linux-usb@...r.kernel.org" <linux-usb@...r.kernel.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>
Subject: Re: [PATCH v2 8/9] usb: serial: mxuport: Simplify return statement
On Tue, Aug 04, 2015 at 02:04:35PM +0000, Karajgaonkar, Saurabh (S.) wrote:
> From: Saurabh Karajgaonkar <skarajga@...teon.com>
>
> Replace redundant variable use in return statement.
>
> Signed-off-by: Saurabh Karajgaonkar <skarajga@...teon.com>
> ---
> drivers/usb/serial/mxuport.c | 10 +++-------
> 1 file changed, 3 insertions(+), 7 deletions(-)
>
> diff --git a/drivers/usb/serial/mxuport.c b/drivers/usb/serial/mxuport.c
> index 460a406..31a8b47 100644
> --- a/drivers/usb/serial/mxuport.c
> +++ b/drivers/usb/serial/mxuport.c
> @@ -1137,13 +1137,9 @@ static int mxuport_port_probe(struct usb_serial_port *port)
> return err;
>
> /* Set interface (RS-232) */
> - err = mxuport_send_ctrl_urb(serial, RQ_VENDOR_SET_INTERFACE,
> - MX_INT_RS232,
> - port->port_number);
> - if (err)
> - return err;
> -
> - return 0;
> + return mxuport_send_ctrl_urb(serial, RQ_VENDOR_SET_INTERFACE,
> + MX_INT_RS232,
> + port->port_number);
I do not consider this an improvement as it makes the final ctrl-request
call look different from the previous two without any real benefit.
I'll drop this one.
Johan
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists