Re: [PATCH] drm/amd/display: remove redundant initialization of variable remainder

2023-12-19 Thread Alex Deucher
Applied. Thanks! On Tue, Dec 19, 2023 at 12:40 PM Colin Ian King wrote: > > Variable remainder is being initialized with a value that is never read, > the assignment is redundant and can be removed. Also add a newline > after the declaration to clean up the coding style. > > Signed-off-by: Colin

[PATCH] drm/amd/display: remove redundant initialization of variable remainder

2023-12-19 Thread Colin Ian King
Variable remainder is being initialized with a value that is never read, the assignment is redundant and can be removed. Also add a newline after the declaration to clean up the coding style. Signed-off-by: Colin Ian King --- drivers/gpu/drm/amd/display/dc/basics/conversion.c | 3 ++- 1 file cha