mirror of
https://github.com/hardkernel/linux.git
synced 2026-04-11 15:38:07 +09:00
staging: qlge: qlge_main.c: remove an unneeded variable
Remove unneeded temporary local variable, cleanup suggested by coccinelle. Signed-off-by: Payal Kshirsagar <payalskshirsagar1234@gmail.com> Reviewed-by: Stefano Brivio <sbrivio@redhat.com> Link: https://lore.kernel.org/r/20200312190624.24167-2-payalskshirsagar1234@gmail.com Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
251c833ca4
commit
cedce08c5f
@@ -3901,14 +3901,11 @@ static void ql_release_adapter_resources(struct ql_adapter *qdev)
|
||||
|
||||
static int ql_get_adapter_resources(struct ql_adapter *qdev)
|
||||
{
|
||||
int status = 0;
|
||||
|
||||
if (ql_alloc_mem_resources(qdev)) {
|
||||
netif_err(qdev, ifup, qdev->ndev, "Unable to allocate memory.\n");
|
||||
return -ENOMEM;
|
||||
}
|
||||
status = ql_request_irq(qdev);
|
||||
return status;
|
||||
return ql_request_irq(qdev);
|
||||
}
|
||||
|
||||
static int qlge_close(struct net_device *ndev)
|
||||
|
||||
Reference in New Issue
Block a user