diff options
| author | Sunil Khatri <[email protected]> | 2024-10-17 14:29:34 +0000 |
|---|---|---|
| committer | Alex Deucher <[email protected]> | 2024-10-22 21:50:39 +0000 |
| commit | 8231e3af969cef1ab275825bc7b403fdbd1e5c1d (patch) | |
| tree | 3c50d8ed10daaee9e74e35c6f2e5ddf19c759646 /drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c | |
| parent | drm/amdgpu: clean the dummy wait_for_idle functions (diff) | |
| download | kernel-8231e3af969cef1ab275825bc7b403fdbd1e5c1d.tar.gz kernel-8231e3af969cef1ab275825bc7b403fdbd1e5c1d.zip | |
drm/amdgpu: clean the dummy soft_reset functions
Remove the dummy soft_reset functions for all
ip blocks.
Signed-off-by: Sunil Khatri <[email protected]>
Reviewed-by: Christian König <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
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 1a9b7e8947d8..8b7e056a7355 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_soft_reset(struct amdgpu_ip_block *ip_block) -{ - return 0; -} - static int acp_set_clockgating_state(void *handle, enum amd_clockgating_state state) { @@ -617,7 +612,6 @@ static const struct amd_ip_funcs acp_ip_funcs = { .suspend = acp_suspend, .resume = acp_resume, .is_idle = acp_is_idle, - .soft_reset = acp_soft_reset, .set_clockgating_state = acp_set_clockgating_state, .set_powergating_state = acp_set_powergating_state, .dump_ip_state = NULL, |
