usb: storage: datafab: remove redundant assignment of variable result
authorColin Ian King <colin.king@canonical.com>
Tue, 20 Apr 2021 11:38:18 +0000 (12:38 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 22 Apr 2021 08:52:10 +0000 (10:52 +0200)
The variable result is being assigned with a value that is
never read, the assignment is redundant and can be removed.

Acked-by: Alan Stern <stern@rowland.harvard.edu>
Signed-off-by: Colin Ian King <colin.king@canonical.com>
Addresses-Coverity: ("Unused value")
Link: https://lore.kernel.org/r/20210420113818.378478-1-colin.king@canonical.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/storage/datafab.c

index 5888184..bcc4a2f 100644 (file)
@@ -294,7 +294,6 @@ static int datafab_write_data(struct us_data *us,
                if (reply[0] != 0x50 && reply[1] != 0) {
                        usb_stor_dbg(us, "Gah! write return code: %02x %02x\n",
                                     reply[0], reply[1]);
-                       result = USB_STOR_TRANSPORT_ERROR;
                        goto leave;
                }