platform/x86/intel/tpmi: Handle error from tpmi_process_info()
When tpmi_process_info() returns error, fail to load the driver. This can happen if call to ioremap() returns error. Signed-off-by: Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com> Reviewed-by: Ilpo Järvinen <ilpo.jarvinen@linux.intel.com> Cc: stable@vger.kernel.org # v6.3+ Link: https://lore.kernel.org/r/20240423204619.3946901-2-srinivas.pandruvada@linux.intel.com Reviewed-by: Hans de Goede <hdegoede@redhat.com> Signed-off-by: Hans de Goede <hdegoede@redhat.com>
This commit is contained in:
parent
22813a1ad2
commit
2920141fc1
@ -763,8 +763,11 @@ static int intel_vsec_tpmi_init(struct auxiliary_device *auxdev)
|
||||
* when actual device nodes created outside this
|
||||
* loop via tpmi_create_devices().
|
||||
*/
|
||||
if (pfs->pfs_header.tpmi_id == TPMI_INFO_ID)
|
||||
tpmi_process_info(tpmi_info, pfs);
|
||||
if (pfs->pfs_header.tpmi_id == TPMI_INFO_ID) {
|
||||
ret = tpmi_process_info(tpmi_info, pfs);
|
||||
if (ret)
|
||||
return ret;
|
||||
}
|
||||
|
||||
if (pfs->pfs_header.tpmi_id == TPMI_CONTROL_ID)
|
||||
tpmi_set_control_base(auxdev, tpmi_info, pfs);
|
||||
|
Loading…
Reference in New Issue
Block a user