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

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

Merge "firmware: Reword error messages when kernel is unable to find firmware"

parents ca0dd78d 9da0aaf4
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -578,8 +578,8 @@ _request_firmware(const struct firmware **firmware_p, const char *name,
	ret = fw_get_filesystem_firmware(device, fw->priv);
	if (ret) {
		if (!(opt_flags & FW_OPT_NO_WARN))
			dev_warn(device,
				 "Direct firmware load for %s failed with error %d\n",
			dev_dbg(device,
				 "Firmware %s was not found in kernel paths. rc:%d\n",
				 name, ret);
		ret = firmware_fallback_sysfs(fw, name, device, opt_flags, ret);
	} else