OSDN Git Service

drm/amd/display: return 'NULL' instead of 'false' from dcn20_acquire_idle_pipe_for_layer
authorArnd Bergmann <arnd@arndb.de>
Fri, 12 Jul 2019 09:39:52 +0000 (11:39 +0200)
committerAlex Deucher <alexander.deucher@amd.com>
Tue, 16 Jul 2019 18:02:51 +0000 (13:02 -0500)
commit7a17c8ce3321bb0738283706d3b46b047a9cbcfb
treec6fdbfcbae84b03459fe6be60372ae37ef1c1375
parent7e446b3c76b4ef0d3808305c0a51f895236b37bf
drm/amd/display: return 'NULL' instead of 'false' from dcn20_acquire_idle_pipe_for_layer

clang complains that 'false' is a not a pointer:

drivers/gpu/drm/amd/amdgpu/../display/dc/dcn20/dcn20_resource.c:2428:10: error: expression which evaluates to zero treated as a null pointer constant of type 'struct pipe_ctx *' [-Werror,-Wnon-literal-null-conversion]
                return false;

Changing it to 'NULL' looks like the right thing that will shut up
the warning and make it easier to read, while not changing behavior.

Fixes: 7ed4e6352c16 ("drm/amd/display: Add DCN2 HW Sequencer and Resource")
Reviewed-by: Nathan Chancellor <natechancellor@gmail.com>
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/dcn20/dcn20_resource.c