]> git.ipfire.org Git - people/arne_f/kernel.git/commitdiff
staging: octeon-usb: simplify if statement
authorAaro Koskinen <aaro.koskinen@iki.fi>
Fri, 26 Feb 2016 00:13:55 +0000 (02:13 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 26 Feb 2016 06:38:16 +0000 (22:38 -0800)
Simplify if statement to avoid deep nesting.

Signed-off-by: Aaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/octeon-usb/octeon-hcd.c

index 726ec5d5013f1a5442ecbc50ffea2aa8b4eb50c9..39854ab09e32793225115319354e52a466faffa1 100644 (file)
@@ -2768,26 +2768,23 @@ static int cvmx_usb_poll_channel(struct cvmx_usb_state *usb, int channel)
                         */
                        if (cvmx_usb_pipe_needs_split(usb, pipe)) {
                                if (transaction->stage ==
-                                   CVMX_USB_STAGE_NON_CONTROL)
+                                   CVMX_USB_STAGE_NON_CONTROL) {
                                        transaction->stage =
                                                CVMX_USB_STAGE_NON_CONTROL_SPLIT_COMPLETE;
-                               else {
-                                       if (buffer_space_left &&
-                                           (bytes_in_last_packet ==
-                                            pipe->max_packet))
-                                               transaction->stage =
-                                                       CVMX_USB_STAGE_NON_CONTROL;
-                                       else {
-                                               if (transaction->type ==
-                                                   CVMX_USB_TRANSFER_INTERRUPT)
-                                                       pipe->next_tx_frame +=
-                                                               pipe->interval;
-                                                       cvmx_usb_perform_complete(
-                                                               usb,
-                                                               pipe,
-                                                               transaction,
-                                                               CVMX_USB_COMPLETE_SUCCESS);
-                                       }
+                               } else if (buffer_space_left &&
+                                          (bytes_in_last_packet ==
+                                          pipe->max_packet)) {
+                                       transaction->stage =
+                                               CVMX_USB_STAGE_NON_CONTROL;
+                               } else {
+                                       if (transaction->type ==
+                                           CVMX_USB_TRANSFER_INTERRUPT)
+                                               pipe->next_tx_frame +=
+                                                       pipe->interval;
+                                       cvmx_usb_perform_complete(usb,
+                                                                 pipe,
+                                                                 transaction,
+                                                                 CVMX_USB_COMPLETE_SUCCESS);
                                }
                        } else {
                                if ((pipe->device_speed ==