Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 889cdff7 authored by Colin Ian King's avatar Colin Ian King Committed by Kalle Valo
Browse files

ipw2200: remove redundant check of rc < 0



The check for rc < 0 is always false so the check is redundant
and can be removed.

Detected with CoverityScan, CID#101143 ("Logically dead code")

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 66ded1f8
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -3539,9 +3539,6 @@ static int ipw_load(struct ipw_priv *priv)
	fw_img = &fw->data[le32_to_cpu(fw->boot_size) +
			   le32_to_cpu(fw->ucode_size)];

	if (rc < 0)
		goto error;

	if (!priv->rxq)
		priv->rxq = ipw_rx_queue_alloc(priv);
	else