Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2bce4be0 authored by Alex Deucher's avatar Alex Deucher
Browse files

drm/amdgpu/pp/smu7: drop unused values in smu data structure



use kaddr directly rather than secondary variable.

Acked-by: default avatarChristian König <christian.koenig@amd.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 3d75a8b6
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -422,7 +422,7 @@ int smu7_request_smu_load_fw(struct pp_hwmgr *hwmgr)
			   + UCODE_ID_CP_MEC_JT2_MASK;
	}

	toc = (struct SMU_DRAMData_TOC *)smu_data->header;
	toc = (struct SMU_DRAMData_TOC *)smu_data->header_buffer.kaddr;
	toc->structure_version = 1;

	PP_ASSERT_WITH_CODE(0 == smu7_populate_single_firmware_entry(hwmgr,
@@ -591,7 +591,6 @@ int smu7_init(struct pp_hwmgr *hwmgr)
	if (r)
		return -EINVAL;

	smu_data->header = smu_data->header_buffer.kaddr;
	smu_data->header_buffer.mc_addr = mc_addr;

	if (!hwmgr->not_vf)
+0 −2
Original line number Diff line number Diff line
@@ -37,8 +37,6 @@ struct smu7_buffer_entry {
};

struct smu7_smumgr {
	uint8_t *header;
	uint8_t *mec_image;
	struct smu7_buffer_entry smu_buffer;
	struct smu7_buffer_entry header_buffer;