Skip to content

Commit 04ab3b7

Browse files
committed
drm/amdgpu/gfx8: fix priv reg interrupt enable
Looks like a copy/paste typo. Reviewed-by: Christian König <christian.koenig@amd.com> Noticed-by: David Panariti <David.Panariti@amd.com> Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
1 parent e1d09dc commit 04ab3b7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/gpu/drm/amd/amdgpu/gfx_v8_0.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4995,7 +4995,7 @@ static int gfx_v8_0_set_priv_reg_fault_state(struct amdgpu_device *adev,
49954995
case AMDGPU_IRQ_STATE_ENABLE:
49964996
cp_int_cntl = RREG32(mmCP_INT_CNTL_RING0);
49974997
cp_int_cntl = REG_SET_FIELD(cp_int_cntl, CP_INT_CNTL_RING0,
4998-
PRIV_REG_INT_ENABLE, 0);
4998+
PRIV_REG_INT_ENABLE, 1);
49994999
WREG32(mmCP_INT_CNTL_RING0, cp_int_cntl);
50005000
break;
50015001
default:

0 commit comments

Comments
 (0)