]> git.karo-electronics.de Git - linux-beck.git/commitdiff
usb/host/fotg210: Remove return statement inside if
authorPeter Senna Tschudin <peter.senna@gmail.com>
Sat, 17 Oct 2015 19:28:45 +0000 (21:28 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 18 Oct 2015 03:49:50 +0000 (20:49 -0700)
This patch make changes to an if else statement which simplifies the code
allowing to remove a return.

CC: Joe Perches <joe@perches.com>
Signed-off-by: Peter Senna Tschudin <peter.senna@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/host/fotg210-hcd.c

index 35020129e2c81bb200e966269268253de4276a78..787f4e3d16d81989dd71e9061d25992f789e000d 100644 (file)
@@ -1401,15 +1401,13 @@ static int check_reset_complete(struct fotg210_hcd *fotg210, int index,
                return port_status;
 
        /* if reset finished and it's still not enabled -- handoff */
-       if (!(port_status & PORT_PE)) {
+       if (!(port_status & PORT_PE))
                /* with integrated TT, there's nobody to hand it to! */
-               fotg210_dbg(fotg210,
-                               "Failed to enable port %d on root hub TT\n",
+               fotg210_dbg(fotg210, "Failed to enable port %d on root hub TT\n",
+                               index + 1);
+       else
+               fotg210_dbg(fotg210, "port %d reset complete, port enabled\n",
                                index + 1);
-               return port_status;
-       }
-       fotg210_dbg(fotg210, "port %d reset complete, port enabled\n",
-                       index + 1);
 
        return port_status;
 }