driver: net: fsl-mc: remove MC firmware version check
The MC version numbers provide no meaningful information about binary interface compatibility, so remove the check which refuses to start the MC unless a specific version is found. Version checking is supposed to be done at the individual object level, and individual drivers are responsible for their own version checking. Signed-off-by: Stuart Yoder <stuart.yoder@freescale.com> Acked-by: Prabhakar Kushwaha <prabhakar@freescale.com> Reviewed-by: York Sun <yorksun@freescale.com>
This commit is contained in:
parent
52bc7c7e2b
commit
509356224b
1 changed files with 0 additions and 13 deletions
|
@ -541,19 +541,6 @@ int mc_init(u64 mc_fw_addr, u64 mc_dpc_addr)
|
|||
goto out;
|
||||
}
|
||||
|
||||
if (MC_VER_MAJOR != mc_ver_info.major) {
|
||||
printf("fsl-mc: ERROR: Firmware major version mismatch (found: %d, expected: %d)\n",
|
||||
mc_ver_info.major, MC_VER_MAJOR);
|
||||
printf("fsl-mc: Update the Management Complex firmware\n");
|
||||
|
||||
error = -ENODEV;
|
||||
goto out;
|
||||
}
|
||||
|
||||
if (MC_VER_MINOR != mc_ver_info.minor)
|
||||
printf("fsl-mc: WARNING: Firmware minor version mismatch (found: %d, expected: %d)\n",
|
||||
mc_ver_info.minor, MC_VER_MINOR);
|
||||
|
||||
printf("fsl-mc: Management Complex booted (version: %d.%d.%d, boot status: %#x)\n",
|
||||
mc_ver_info.major, mc_ver_info.minor, mc_ver_info.revision,
|
||||
reg_gsr & GSR_FS_MASK);
|
||||
|
|
Loading…
Reference in a new issue