staging: most: hdm-usb: simplify initialization of mbo->status.
authorChristian Gromm <christian.gromm@microchip.com>
Fri, 19 Aug 2016 09:12:53 +0000 (11:12 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sun, 21 Aug 2016 14:53:57 +0000 (16:53 +0200)
This patch simplifies the code that initializes mbo->status.

Signed-off-by: Andrey Shvetsov <andrey.shvetsov@k2l.de>
Signed-off-by: Christian Gromm <christian.gromm@microchip.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/most/hdm-usb/hdm_usb.c

index ddee281..7f00aaf 100644 (file)
@@ -596,15 +596,11 @@ static void hdm_read_completion(struct urb *urb)
                }
        } else {
                mbo->processed_length = urb->actual_length;
-               if (!mdev->padding_active[channel]) {
-                       mbo->status = MBO_SUCCESS;
-               } else {
-                       if (hdm_remove_padding(mdev, channel, mbo)) {
-                               mbo->processed_length = 0;
-                               mbo->status = MBO_E_INVAL;
-                       } else {
-                               mbo->status = MBO_SUCCESS;
-                       }
+               mbo->status = MBO_SUCCESS;
+               if (mdev->padding_active[channel] &&
+                   hdm_remove_padding(mdev, channel, mbo)) {
+                       mbo->processed_length = 0;
+                       mbo->status = MBO_E_INVAL;
                }
        }
        spin_lock_irqsave(&mdev->anchor_list_lock[channel], flags);