drm/amd/display: Conversion to bool not necessary
authorDeepak R Varma <drv@mailo.com>
Thu, 12 Jan 2023 13:51:30 +0000 (19:21 +0530)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 13 Jan 2023 19:54:51 +0000 (14:54 -0500)
commit2ab21bb96e97f06861f65534e23f9b48020858fc
tree37ba289fb6c283177bb43b11c96a669f4bae8750
parent35a45d630359bf9bcbeb612073c7869afb944436
drm/amd/display: Conversion to bool not necessary

A logical evaluation already results in bool. There is no need for using
a ternary operator based evaluation and bool conversion of the outcome.
Issue identified using boolconv.cocci Coccinelle semantic patch.
This was also reported by the Kernel Test Robot. Hence

Fixes: 473683a03495 ("drm/amd/display: Create a file dedicated for CRTC")

Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Deepak R Varma <drv@mailo.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/amdgpu_dm/amdgpu_dm_crtc.c