mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-09 12:17:12 +09:00
drm/amd/pm: ensure the fw_info is not null before using it
[ Upstream commit 186fb12e7a7b038c2710ceb2fb74068f1b5d55a4 ] This resolves the dereference null return value warning reported by Coverity. Signed-off-by: Tim Huang <tim.huang@amd.com> Reviewed-by: Jesse Zhang <jesse.zhang@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
1e7ba299de
commit
fd5f4ac1a9
@@ -1185,6 +1185,8 @@ static int init_overdrive_limits(struct pp_hwmgr *hwmgr,
|
|||||||
fw_info = smu_atom_get_data_table(hwmgr->adev,
|
fw_info = smu_atom_get_data_table(hwmgr->adev,
|
||||||
GetIndexIntoMasterTable(DATA, FirmwareInfo),
|
GetIndexIntoMasterTable(DATA, FirmwareInfo),
|
||||||
&size, &frev, &crev);
|
&size, &frev, &crev);
|
||||||
|
PP_ASSERT_WITH_CODE(fw_info != NULL,
|
||||||
|
"Missing firmware info!", return -EINVAL);
|
||||||
|
|
||||||
if ((fw_info->ucTableFormatRevision == 1)
|
if ((fw_info->ucTableFormatRevision == 1)
|
||||||
&& (le16_to_cpu(fw_info->usStructureSize) >= sizeof(ATOM_FIRMWARE_INFO_V1_4)))
|
&& (le16_to_cpu(fw_info->usStructureSize) >= sizeof(ATOM_FIRMWARE_INFO_V1_4)))
|
||||||
|
|||||||
Reference in New Issue
Block a user