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

Commit 65cccfb0 authored by Wey-Yi Guy's avatar Wey-Yi Guy
Browse files

iwlagn: no version check for experimental uCode



For experimental uCode, it should work with the driver
if driver has experimental uCode support option enabled;
remove the API version checking.

Signed-off-by: default avatarWey-Yi Guy <wey-yi.w.guy@intel.com>
parent 1cf26373
Loading
Loading
Loading
Loading
+16 −11
Original line number Diff line number Diff line
@@ -2104,18 +2104,23 @@ static void iwl_ucode_callback(const struct firmware *ucode_raw, void *context)
	 * firmware filename ... but we don't check for that and only rely
	 * on the API version read from firmware header from here on forward
	 */
	/* no api version check required for experimental uCode */
	if (priv->fw_index != UCODE_EXPERIMENTAL_INDEX) {
		if (api_ver < api_min || api_ver > api_max) {
		IWL_ERR(priv, "Driver unable to support your firmware API. "
			IWL_ERR(priv,
				"Driver unable to support your firmware API. "
				"Driver supports v%u, firmware is v%u.\n",
				api_max, api_ver);
			goto try_again;
		}

		if (api_ver != api_max)
		IWL_ERR(priv, "Firmware has old API version. Expected v%u, "
			IWL_ERR(priv,
				"Firmware has old API version. Expected v%u, "
				"got v%u. New firmware can be obtained "
				"from http://www.intellinuxwireless.org.\n",
				api_max, api_ver);
	}

	if (build)
		sprintf(buildstr, " build %u%s", build,