diff options
author | Rodrigo Siqueira <[email protected]> | 2024-04-03 10:26:17 -0600 |
---|---|---|
committer | Alex Deucher <[email protected]> | 2024-04-16 21:27:16 -0400 |
commit | 7725605f3137a8880f6f0b6fc94801ebafdebae9 (patch) | |
tree | eab67b1ba181ebde6347a966b674af257a6b8ce7 | |
parent | a50f6fddbaefc26ec2c9a401ea3e71fd5d25582d (diff) |
drm/amd/display: Replace int with unsigned int
Reviewed-by: Leo Li <[email protected]>
Signed-off-by: Rodrigo Siqueira <[email protected]>
Tested-by: Daniel Wheeler <[email protected]>
Signed-off-by: Alex Deucher <[email protected]>
-rw-r--r-- | drivers/gpu/drm/amd/display/dc/core/dc_stream.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/gpu/drm/amd/display/dc/core/dc_stream.c b/drivers/gpu/drm/amd/display/dc/core/dc_stream.c index ee6493a9a79c..5c7e4884cac2 100644 --- a/drivers/gpu/drm/amd/display/dc/core/dc_stream.c +++ b/drivers/gpu/drm/amd/display/dc/core/dc_stream.c @@ -495,7 +495,7 @@ bool dc_stream_remove_writeback(struct dc *dc, struct dc_stream_state *stream, uint32_t dwb_pipe_inst) { - int i = 0, j = 0; + unsigned int i, j; if (stream == NULL) { dm_error("DC: dc_stream is NULL!\n"); return false; |