diff options
author | Sunil Khatri <sunil.khatri@amd.com> | 2024-10-17 17:26:34 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2024-10-23 00:50:39 +0300 |
commit | f13c7da11822c291aaf6375466f4dbcf0038fa20 (patch) | |
tree | 66be8263912646233a54059e43ae73dd18dedbc6 /drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c | |
parent | aa980de3b5891009cbf1095543bf2577f7e5549d (diff) | |
download | linux-f13c7da11822c291aaf6375466f4dbcf0038fa20.tar.xz |
drm/amdgpu: clean the dummy wait_for_idle functions
Remove the dummy wait_for_idle functions for all
ip blocks.
Signed-off-by: Sunil Khatri <sunil.khatri@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c index 8e0725198dae..1a9b7e8947d8 100644 --- a/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c +++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c @@ -584,11 +584,6 @@ static bool acp_is_idle(void *handle) return true; } -static int acp_wait_for_idle(struct amdgpu_ip_block *ip_block) -{ - return 0; -} - static int acp_soft_reset(struct amdgpu_ip_block *ip_block) { return 0; @@ -622,7 +617,6 @@ static const struct amd_ip_funcs acp_ip_funcs = { .suspend = acp_suspend, .resume = acp_resume, .is_idle = acp_is_idle, - .wait_for_idle = acp_wait_for_idle, .soft_reset = acp_soft_reset, .set_clockgating_state = acp_set_clockgating_state, .set_powergating_state = acp_set_powergating_state, |