diff options
author | Sunil Khatri <sunil.khatri@amd.com> | 2024-10-17 17:29:34 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2024-10-23 00:50:39 +0300 |
commit | 8231e3af969cef1ab275825bc7b403fdbd1e5c1d (patch) | |
tree | 3c50d8ed10daaee9e74e35c6f2e5ddf19c759646 /drivers/gpu/drm/amd/amdgpu/si.c | |
parent | f13c7da11822c291aaf6375466f4dbcf0038fa20 (diff) | |
download | linux-8231e3af969cef1ab275825bc7b403fdbd1e5c1d.tar.xz |
drm/amdgpu: clean the dummy soft_reset functions
Remove the dummy soft_reset 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/si.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/si.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/si.c b/drivers/gpu/drm/amd/amdgpu/si.c index 36f17c87de85..adedbf4bff78 100644 --- a/drivers/gpu/drm/amd/amdgpu/si.c +++ b/drivers/gpu/drm/amd/amdgpu/si.c @@ -2649,11 +2649,6 @@ static bool si_common_is_idle(void *handle) return true; } -static int si_common_soft_reset(struct amdgpu_ip_block *ip_block) -{ - return 0; -} - static int si_common_set_clockgating_state(void *handle, enum amd_clockgating_state state) { @@ -2674,7 +2669,6 @@ static const struct amd_ip_funcs si_common_ip_funcs = { .hw_fini = si_common_hw_fini, .resume = si_common_resume, .is_idle = si_common_is_idle, - .soft_reset = si_common_soft_reset, .set_clockgating_state = si_common_set_clockgating_state, .set_powergating_state = si_common_set_powergating_state, .dump_ip_state = NULL, |