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

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

Merge "wil6210: fix check for sparrow D0 FW file"

parents e566d871 f427d2ba
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -554,5 +554,7 @@ bool wil_fw_verify_file_exists(struct wil6210_priv *wil, const char *name)
	rc = request_firmware(&fw, name, wil_to_dev(wil));
	if (!rc)
		release_firmware(fw);
	return rc != -ENOENT;
	else
		wil_dbg_fw(wil, "<%s> not available: %d\n", name, rc);
	return !rc;
}