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

Commit 68c38507 authored by zhong jiang's avatar zhong jiang Committed by David S. Miller
Browse files

net: neterion: remove redundant continue



The continue will not truely skip any code. hence it is safe to
remove it.

Signed-off-by: default avatarzhong jiang <zhongjiang@huawei.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 133dc880
Loading
Loading
Loading
Loading
+1 −3
Original line number Diff line number Diff line
@@ -3680,11 +3680,9 @@ static void restore_xmsi_data(struct s2io_nic *nic)
		writeq(nic->msix_info[i].data, &bar0->xmsi_data);
		val64 = (s2BIT(7) | s2BIT(15) | vBIT(msix_index, 26, 6));
		writeq(val64, &bar0->xmsi_access);
		if (wait_for_msix_trans(nic, msix_index)) {
		if (wait_for_msix_trans(nic, msix_index))
			DBG_PRINT(ERR_DBG, "%s: index: %d failed\n",
				  __func__, msix_index);
			continue;
		}
	}
}