+Harry/Jay to comment if needed. Reviewed-by: Guchun Chen <guchun.chen@xxxxxxx> Regards, Guchun -----Original Message----- From: Song, Asher <Asher.Song@xxxxxxx> Sent: Wednesday, August 31, 2022 2:36 PM To: amd-gfx@xxxxxxxxxxxxxxxxxxxxx Cc: Chen, Guchun <Guchun.Chen@xxxxxxx>; Ma, Jun <Jun.Ma2@xxxxxxx>; Cui, Flora <Flora.Cui@xxxxxxx>; Shi, Leslie <Yuliang.Shi@xxxxxxx>; Song, Asher <Asher.Song@xxxxxxx> Subject: [PATCH] drm/amd/display: remove a duplicated declaration There are duplicated declarations of i, remove one of those. Signed-off-by: Asher Song <Asher.Song@xxxxxxx> --- drivers/gpu/drm/amd/display/dc/dml/dcn32/dcn32_fpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/amd/display/dc/dml/dcn32/dcn32_fpu.c b/drivers/gpu/drm/amd/display/dc/dml/dcn32/dcn32_fpu.c index 9f8976b18839..7f6c977c4981 100644 --- a/drivers/gpu/drm/amd/display/dc/dml/dcn32/dcn32_fpu.c +++ b/drivers/gpu/drm/amd/display/dc/dml/dcn32/dcn32_fpu.c @@ -1025,7 +1025,7 @@ static void dcn32_full_validate_bw_helper(struct dc *dc, dcn32_merge_pipes_for_subvp(dc, context); // to re-initialize viewport after the pipe merge - for (int i = 0; i < dc->res_pool->pipe_count; i++) { + for (i = 0; i < dc->res_pool->pipe_count; i++) { struct pipe_ctx *pipe_ctx = &context->res_ctx.pipe_ctx[i]; if (!pipe_ctx->plane_state || !pipe_ctx->stream) -- 2.25.1