mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 16:44:58 +02:00
drm/amd/pm: remove redundant tools_size check
The check for tools_size being non-zero is redundant as tools_size is explicitly set to a non-zero value (0x19000). Removing the if condition simplifies the code without altering functionality. Signed-off-by: Bhavin Sharma <bhavin.sharma@siliconsignals.io> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
This commit is contained in:
parent
2abf2f7032
commit
6ecccc093e
|
|
@ -257,20 +257,18 @@ static int vega12_smu_init(struct pp_hwmgr *hwmgr)
|
|||
priv->smu_tables.entry[TABLE_WATERMARKS].size = sizeof(Watermarks_t);
|
||||
|
||||
tools_size = 0x19000;
|
||||
if (tools_size) {
|
||||
ret = amdgpu_bo_create_kernel((struct amdgpu_device *)hwmgr->adev,
|
||||
tools_size,
|
||||
PAGE_SIZE,
|
||||
AMDGPU_GEM_DOMAIN_VRAM,
|
||||
&priv->smu_tables.entry[TABLE_PMSTATUSLOG].handle,
|
||||
&priv->smu_tables.entry[TABLE_PMSTATUSLOG].mc_addr,
|
||||
&priv->smu_tables.entry[TABLE_PMSTATUSLOG].table);
|
||||
if (ret)
|
||||
goto err1;
|
||||
ret = amdgpu_bo_create_kernel((struct amdgpu_device *)hwmgr->adev,
|
||||
tools_size,
|
||||
PAGE_SIZE,
|
||||
AMDGPU_GEM_DOMAIN_VRAM,
|
||||
&priv->smu_tables.entry[TABLE_PMSTATUSLOG].handle,
|
||||
&priv->smu_tables.entry[TABLE_PMSTATUSLOG].mc_addr,
|
||||
&priv->smu_tables.entry[TABLE_PMSTATUSLOG].table);
|
||||
if (ret)
|
||||
goto err1;
|
||||
|
||||
priv->smu_tables.entry[TABLE_PMSTATUSLOG].version = 0x01;
|
||||
priv->smu_tables.entry[TABLE_PMSTATUSLOG].size = tools_size;
|
||||
}
|
||||
priv->smu_tables.entry[TABLE_PMSTATUSLOG].version = 0x01;
|
||||
priv->smu_tables.entry[TABLE_PMSTATUSLOG].size = tools_size;
|
||||
|
||||
/* allocate space for AVFS Fuse table */
|
||||
ret = amdgpu_bo_create_kernel((struct amdgpu_device *)hwmgr->adev,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user