summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/amd/amdgpu/si.c
diff options
context:
space:
mode:
authorZheng Bin <zhengbin13@huawei.com>2020-09-09 16:07:17 +0300
committerAlex Deucher <alexander.deucher@amd.com>2020-09-16 00:52:43 +0300
commite66cdf250e7cba9fa7308b179fceeb2fdcbed3ba (patch)
treeb503df1d72d51a28188ee141ee7b0e658b3329a7 /drivers/gpu/drm/amd/amdgpu/si.c
parent4bbbe77c15c633fae464ce7f7106762a1fe7c7a9 (diff)
downloadlinux-e66cdf250e7cba9fa7308b179fceeb2fdcbed3ba.tar.xz
drm/amd/amdgpu: fix comparison pointer to bool warning in si.c
Fixes coccicheck warning: drivers/gpu/drm/amd/amdgpu/si.c:1342:5-10: WARNING: Comparison to bool Acked-by: Christian König <christian.koenig@amd.com> Signed-off-by: Zheng Bin <zhengbin13@huawei.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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/amdgpu/si.c b/drivers/gpu/drm/amd/amdgpu/si.c
index 455d5e366c69..e5e336fd9e94 100644
--- a/drivers/gpu/drm/amd/amdgpu/si.c
+++ b/drivers/gpu/drm/amd/amdgpu/si.c
@@ -1339,7 +1339,7 @@ static void si_vga_set_state(struct amdgpu_device *adev, bool state)
uint32_t temp;
temp = RREG32(CONFIG_CNTL);
- if (state == false) {
+ if (!state) {
temp &= ~(1<<0);
temp |= (1<<1);
} else {