mirror of
https://github.com/torvalds/linux.git
synced 2026-06-02 03:24:19 +02:00
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: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
This commit is contained in:
parent
ca133c395f
commit
33c24f8f5a
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user