Commit c30c950e authored by Colin Ian King's avatar Colin Ian King Committed by Alex Deucher

drm/amd/pp: remove redundant pointer internal_buf

The pointer internal_buf is assigned a value but the pointer is never
read, hence it is redundant and can be removed.

Cleans up clang warning:
drivers/gpu/drm/amd/amdgpu/../powerplay/smumgr/smu7_smumgr.c:630:2:
warning: Value stored to 'internal_buf' is never read
Reviewed-by: default avatarRex Zhu <Rex.Zhu@amd.com>
Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Signed-off-by: default avatarAlex Deucher <alexander.deucher@amd.com>
parent 5494d864
...@@ -585,7 +585,6 @@ int smu7_setup_pwr_virus(struct pp_hwmgr *hwmgr) ...@@ -585,7 +585,6 @@ int smu7_setup_pwr_virus(struct pp_hwmgr *hwmgr)
int smu7_init(struct pp_hwmgr *hwmgr) int smu7_init(struct pp_hwmgr *hwmgr)
{ {
struct smu7_smumgr *smu_data; struct smu7_smumgr *smu_data;
uint8_t *internal_buf;
uint64_t mc_addr = 0; uint64_t mc_addr = 0;
int r; int r;
/* Allocate memory for backend private data */ /* Allocate memory for backend private data */
...@@ -627,7 +626,6 @@ int smu7_init(struct pp_hwmgr *hwmgr) ...@@ -627,7 +626,6 @@ int smu7_init(struct pp_hwmgr *hwmgr)
&smu_data->header_buffer.kaddr); &smu_data->header_buffer.kaddr);
return -EINVAL; return -EINVAL;
} }
internal_buf = smu_data->smu_buffer.kaddr;
smu_data->smu_buffer.mc_addr = mc_addr; smu_data->smu_buffer.mc_addr = mc_addr;
if (smum_is_hw_avfs_present(hwmgr)) if (smum_is_hw_avfs_present(hwmgr))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment