lkml.org 
[lkml]   [2015]   [May]   [25]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
/
Date
From
SubjectRe: [PATCH] serial: 8250: remove return statements from void function
On Mon, May 25, 2015 at 10:53:03AM +0900, Masahiro Yamada wrote:
> 2015-05-25 4:46 GMT+09:00 Greg Kroah-Hartman <gregkh@linuxfoundation.org>:
> > On Mon, May 11, 2015 at 12:30:22PM +0900, Masahiro Yamada wrote:
> >> serial8250_set_mctrl() is a void type function. Returning something
> >> does not look nice.
> >>
> >> Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
> >> ---
> >>
> >> drivers/tty/serial/8250/8250_core.c | 5 +++--
> >> 1 file changed, 3 insertions(+), 2 deletions(-)
> >>
> >> diff --git a/drivers/tty/serial/8250/8250_core.c b/drivers/tty/serial/8250/8250_core.c
> >> index 4882027..146f56c 100644
> >> --- a/drivers/tty/serial/8250/8250_core.c
> >> +++ b/drivers/tty/serial/8250/8250_core.c
> >> @@ -2019,8 +2019,9 @@ EXPORT_SYMBOL_GPL(serial8250_do_set_mctrl);
> >> static void serial8250_set_mctrl(struct uart_port *port, unsigned int mctrl)
> >> {
> >> if (port->set_mctrl)
> >> - return port->set_mctrl(port, mctrl);
> >> - return serial8250_do_set_mctrl(port, mctrl);
> >> + port->set_mctrl(port, mctrl);
> >> + else
> >> + serial8250_do_set_mctrl(port, mctrl);
> >> }
> >
> > You just changed the logic here!
>
>
> Could you tell me why?
>
> The logic still looks the same to me.

{sigh} you are right. Sorry about that, I'll go dig up the original
patch and queue it up, this was my fault in reading the code
incorrectly.

greg k-h


\
 
 \ /
  Last update: 2015-05-25 18:41    [W:0.905 / U:0.100 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site