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

Commit 59e5f949 authored by Linux Build Service Account's avatar Linux Build Service Account Committed by Gerrit - the friendly Code Review server
Browse files

Merge "wil6210: Rate limit "ring full" error message"

parents 2ff6b941 b0f36025
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -928,7 +928,8 @@ static int wil_tx_vring(struct wil6210_priv *wil, struct vring *vring,
	wil_dbg_txrx(wil, "%s()\n", __func__);

	if (avail < 1 + nr_frags) {
		wil_err(wil, "Tx ring full. No space for %d fragments\n",
		wil_err_ratelimited(wil,
				    "Tx ring full. No space for %d fragments\n",
				    1 + nr_frags);
		return -ENOMEM;
	}