diff mbox series

[-next,07/14] drm/amdgpu: remove unnecessary conversion to bool in amdgpu_acp.c

Message ID 20200121135540.165798-8-chenzhou10@huawei.com (mailing list archive)
State New, archived
Headers show
Series drm/amdgpu: remove unnecessary conversion to bool | expand

Commit Message

chenzhou Jan. 21, 2020, 1:55 p.m. UTC
Fixes coccicheck warning:

./drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c:530:51-56: WARNING:
	conversion to bool not needed here

Signed-off-by: Chen Zhou <chenzhou10@huawei.com>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c
index 82155ac..8008b67 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_acp.c
@@ -527,7 +527,7 @@  static int acp_set_powergating_state(void *handle,
 				     enum amd_powergating_state state)
 {
 	struct amdgpu_device *adev = (struct amdgpu_device *)handle;
-	bool enable = state == AMD_PG_STATE_GATE ? true : false;
+	bool enable = state == AMD_PG_STATE_GATE;
 
 	if (adev->powerplay.pp_funcs &&
 		adev->powerplay.pp_funcs->set_powergating_by_smu)