mirror of
https://github.com/torvalds/linux.git
synced 2026-06-04 04:23:35 +02:00
usb: storage: datafab: remove redundant assignment of variable result
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>
This commit is contained in:
parent
2bda2c0962
commit
95dbac94da
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user