diff options
author | Edward O'Callaghan <funfunctor@folklore1984.net> | 2016-07-11 20:17:53 -0400 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2016-07-29 14:36:48 -0400 |
commit | 004e29ccf034ea1fb08e77b76106891bb88fae6f (patch) | |
tree | 4d1101e968575e819c94c465ff2c3f09a9f2ea55 /drivers/gpu/drm/amd/amdgpu/cik.c | |
parent | ed5121a3d8fdd8992a82a3815642fc46108300fc (diff) |
drivers/amdgpu: Use canonical form in branch predicates
Found-by: Coccinelle
Signed-off-by: Edward O'Callaghan <funfunctor@folklore1984.net>
Reviewed-by: Tom St Denis <tom.stdenis@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/cik.c')
-rw-r--r-- | drivers/gpu/drm/amd/amdgpu/cik.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/cik.c b/drivers/gpu/drm/amd/amdgpu/cik.c index a7de4d18ac94..4efc901f658c 100644 --- a/drivers/gpu/drm/amd/amdgpu/cik.c +++ b/drivers/gpu/drm/amd/amdgpu/cik.c | |||
@@ -879,7 +879,7 @@ static void cik_vga_set_state(struct amdgpu_device *adev, bool state) | |||
879 | uint32_t tmp; | 879 | uint32_t tmp; |
880 | 880 | ||
881 | tmp = RREG32(mmCONFIG_CNTL); | 881 | tmp = RREG32(mmCONFIG_CNTL); |
882 | if (state == false) | 882 | if (!state) |
883 | tmp |= CONFIG_CNTL__VGA_DIS_MASK; | 883 | tmp |= CONFIG_CNTL__VGA_DIS_MASK; |
884 | else | 884 | else |
885 | tmp &= ~CONFIG_CNTL__VGA_DIS_MASK; | 885 | tmp &= ~CONFIG_CNTL__VGA_DIS_MASK; |