diff options
author | Wambui Karuga <wambui.karugax@gmail.com> | 2020-01-03 16:19:12 +0300 |
---|---|---|
committer | Alex Deucher <alexander.deucher@amd.com> | 2020-01-07 12:04:08 -0500 |
commit | fbd62354f08c33a87aace0a3ad2e21137cc331b8 (patch) | |
tree | 7f850f66e135aaea8d80a9977038220cc2e99cf4 /drivers/gpu/drm/radeon/cik_sdma.c | |
parent | 2cacd20e91ecdc1a685fec2a796e8418f52db9c8 (diff) | |
download | lwn-fbd62354f08c33a87aace0a3ad2e21137cc331b8.tar.gz lwn-fbd62354f08c33a87aace0a3ad2e21137cc331b8.zip |
drm/radeon: remove boolean checks in if statements.
Remove unnecessary variable comparisions to true/false in if statements
and check the value of the variable directly.
Signed-off-by: Wambui Karuga <wambui.karugax@gmail.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Diffstat (limited to 'drivers/gpu/drm/radeon/cik_sdma.c')
-rw-r--r-- | drivers/gpu/drm/radeon/cik_sdma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/radeon/cik_sdma.c b/drivers/gpu/drm/radeon/cik_sdma.c index 35b9dc6ce46a..68403e77756d 100644 --- a/drivers/gpu/drm/radeon/cik_sdma.c +++ b/drivers/gpu/drm/radeon/cik_sdma.c @@ -333,7 +333,7 @@ void cik_sdma_enable(struct radeon_device *rdev, bool enable) u32 me_cntl, reg_offset; int i; - if (enable == false) { + if (!enable) { cik_sdma_gfx_stop(rdev); cik_sdma_rlc_stop(rdev); } |