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

Commit 0b7694b7 authored by qctecmdr Service's avatar qctecmdr Service Committed by Gerrit - the friendly Code Review server
Browse files

Merge "wil6210: set ip_summed to CHECKSUM_UNNECESSARY if no error found"

parents f0484ca7 155c348f
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -848,8 +848,10 @@ static int wil_rx_edma_check_errors(struct wil6210_priv *wil, void *msg,
	int l4_rx_status;

	error = wil_rx_status_get_error(msg);
	if (!error)
	if (!error) {
		skb->ip_summed = CHECKSUM_UNNECESSARY;
		return 0;
	}

	l2_rx_status = wil_rx_status_get_l2_rx_status(msg);
	if (l2_rx_status != 0) {