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

Commit 148d3df8 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" into msm-4.9

parents f15237a6 b2b022ba
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;
}