OSDN Git Service

drm/amd/display: Remove superfluous assert
authorJordan Lazare <Jordan.Lazare@amd.com>
Fri, 27 Sep 2019 18:39:01 +0000 (14:39 -0400)
committerAlex Deucher <alexander.deucher@amd.com>
Fri, 25 Oct 2019 20:50:07 +0000 (16:50 -0400)
[Why]
For loop below the assert already checks for the number of instances to
create. ASSERT is meaningless and causing spam.

[How]
dd

Signed-off-by: Jordan Lazare <Jordan.Lazare@amd.com>
Reviewed-by: Harry Wentland <Harry.Wentland@amd.com>
Acked-by: Leo Li <sunpeng.li@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/display/dc/dcn20/dcn20_resource.c

index ee9157b..c9792c4 100644 (file)
@@ -2913,8 +2913,6 @@ bool dcn20_dwbc_create(struct dc_context *ctx, struct resource_pool *pool)
        int i;
        uint32_t pipe_count = pool->res_cap->num_dwb;
 
-       ASSERT(pipe_count > 0);
-
        for (i = 0; i < pipe_count; i++) {
                struct dcn20_dwbc *dwbc20 = kzalloc(sizeof(struct dcn20_dwbc),
                                                    GFP_KERNEL);