diff options
author | James Zhu <James.Zhu@amd.com> | 2020-03-18 17:10:56 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2020-03-19 00:03:05 -0400 |
commit | 23edf7f1a8ececf04f7c097c2ab86a96591445a7 (patch) | |
tree | 74a402a612342149e12cfb5ac75ef7a5d1dddd66 /drivers/gpu/drm/amd/amdgpu/jpeg_v2_0.c | |
parent | 5e31fa6821a977fe65435723347a0ee789f130e3 (diff) | |
download | linux-23edf7f1a8ececf04f7c097c2ab86a96591445a7.tar.gz linux-23edf7f1a8ececf04f7c097c2ab86a96591445a7.tar.bz2 linux-23edf7f1a8ececf04f7c097c2ab86a96591445a7.zip |
drm/amdgpu: fix typo for vcn2/jpeg2 idle check
fix typo for vcn2/jpeg2 idle check
Signed-off-by: James Zhu <James.Zhu@amd.com>
Reviewed-by: Leo Liu <leo.liu@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/amd/amdgpu/jpeg_v2_0.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/jpeg_v2_0.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/jpeg_v2_0.c b/drivers/gpu/drm/amd/amdgpu/jpeg_v2_0.c index ff2e6e1ccde7..6173951db7b4 100644 --- a/drivers/gpu/drm/amd/amdgpu/jpeg_v2_0.c +++ b/drivers/gpu/drm/amd/amdgpu/jpeg_v2_0.c @@ -693,7 +693,7 @@ static int jpeg_v2_0_set_clockgating_state(void *handle, bool enable = (state == AMD_CG_STATE_GATE); if (enable) { - if (jpeg_v2_0_is_idle(handle)) + if (!jpeg_v2_0_is_idle(handle)) return -EBUSY; jpeg_v2_0_enable_clock_gating(adev); } else { |