Commit 33c24f8f authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

media: atomisp: relax firmware version detection criteria

As getting the exact version used by the driver is not easy,
let's relax the version detection and hope for the best,
producing just a warning.
Signed-off-by: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent ca133c39
......@@ -196,13 +196,13 @@ sh_css_check_firmware_version(struct device *dev, const char *fw_data)
file_header = &firmware_header->file_header;
if (strcmp(file_header->version, release_version) != 0) {
dev_err(dev, "Fw version check failed. Expecting '%s', firmware is '%s'.\n",
dev_err(dev, "Firmware version may not be compatible with this driver\n");
dev_err(dev, "Expecting version '%s', but firmware is '%s'.\n",
release_version, file_header->version);
return false;
} else {
/* firmware version matches */
return true;
}
/* For now, let's just accept a wrong version, even if wrong */
return true;
}
enum ia_css_err
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment