]> www.infradead.org Git - users/willy/linux.git/commitdiff
drm/amd/display/dc/core/dc_link_ddc: Remove unnecessary conversion to bool
authorJiapeng Chong <jiapeng.chong@linux.alibaba.com>
Sat, 20 Feb 2021 07:15:52 +0000 (15:15 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 24 Feb 2021 14:28:54 +0000 (09:28 -0500)
Fix the following coccicheck warnings:

./drivers/gpu/drm/amd/display/dc/core/dc_link_ddc.c:544:34-39: WARNING:
conversion to bool not needed here.

Reported-by: Abaci Robot <abaci@linux.alibaba.com>
Signed-off-by: Jiapeng Chong <jiapeng.chong@linux.alibaba.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/core/dc_link_ddc.c

index ae6484ab567b7a2a2d2ea348fa835d0ab8a6b818..42a4177e829a3aa9052953da9c14b862cffe7906 100644 (file)
@@ -558,7 +558,7 @@ bool dal_ddc_service_query_ddc_data(
                        /* should not set mot (middle of transaction) to 0
                         * if there are pending read payloads
                         */
-                       payload.mot = read_size == 0 ? false : true;
+                       payload.mot = !(read_size == 0);
                        payload.length = write_size;
                        payload.data = write_buf;