diff options
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/psp_v3_1.c')
| -rw-r--r-- | drivers/gpu/drm/amd/amdgpu/psp_v3_1.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/drivers/gpu/drm/amd/amdgpu/psp_v3_1.c b/drivers/gpu/drm/amd/amdgpu/psp_v3_1.c index b86dcbabb635..1ed357cb0f49 100644 --- a/drivers/gpu/drm/amd/amdgpu/psp_v3_1.c +++ b/drivers/gpu/drm/amd/amdgpu/psp_v3_1.c @@ -103,7 +103,7 @@ static int psp_v3_1_bootloader_load_sysdrv(struct psp_context *psp)  		return ret;  	/* Copy PSP System Driver binary to memory */ -	psp_copy_fw(psp, psp->sys_start_addr, psp->sys_bin_size); +	psp_copy_fw(psp, psp->sys.start_addr, psp->sys.size_bytes);  	/* Provide the sys driver to bootloader */  	WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_36, @@ -142,7 +142,7 @@ static int psp_v3_1_bootloader_load_sos(struct psp_context *psp)  		return ret;  	/* Copy Secure OS binary to PSP memory */ -	psp_copy_fw(psp, psp->sos_start_addr, psp->sos_bin_size); +	psp_copy_fw(psp, psp->sos.start_addr, psp->sos.size_bytes);  	/* Provide the PSP secure OS to bootloader */  	WREG32_SOC15(MP0, 0, mmMP0_SMN_C2PMSG_36, | 
