myri10ge: remove redundant assignment to variable status
Variable status is being assigned a value that is never read, it is being re-assigned again later on. The assignment is redundant and can be removed. Cleans up clang scan build warning: drivers/net/ethernet/myricom/myri10ge/myri10ge.c:582:7: warning: Although the value stored to 'status' is used in the enclosing expression, the value is never actually read from 'status' [deadcode.DeadStores] Signed-off-by: Colin Ian King <colin.i.king@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
f1ed409fb1
commit
1c604f91b7
@ -579,7 +579,7 @@ static int myri10ge_load_hotplug_firmware(struct myri10ge_priv *mgp, u32 * size)
|
||||
int status;
|
||||
unsigned i;
|
||||
|
||||
if ((status = request_firmware(&fw, mgp->fw_name, dev)) < 0) {
|
||||
if (request_firmware(&fw, mgp->fw_name, dev) < 0) {
|
||||
dev_err(dev, "Unable to load %s firmware image via hotplug\n",
|
||||
mgp->fw_name);
|
||||
status = -EINVAL;
|
||||
|
Loading…
Reference in New Issue
Block a user