Re: [PATCH -next] drm/amd/display: Remove redundant assignment to variable dc

2023-01-06 Thread Alex Deucher
Applied. Thanks! Alex On Thu, Jan 5, 2023 at 2:20 PM Harry Wentland wrote: > > On 12/16/22 05:23, Yi Yang wrote: > > Smatch report warning as follows: > > > > Line 53679: drivers/gpu/drm/amd/display/dc/core/dc_stream.c:402 > > dc_stream_set_cursor_position() warn: variable dereferenced before

Re: [PATCH -next] drm/amd/display: Remove redundant assignment to variable dc

2023-01-05 Thread Harry Wentland
On 12/16/22 05:23, Yi Yang wrote: > Smatch report warning as follows: > > Line 53679: drivers/gpu/drm/amd/display/dc/core/dc_stream.c:402 > dc_stream_set_cursor_position() warn: variable dereferenced before > check 'stream' > > The value of 'dc' has been assigned after check whether 'stream' is

[PATCH -next] drm/amd/display: Remove redundant assignment to variable dc

2022-12-16 Thread Yi Yang
Smatch report warning as follows: Line 53679: drivers/gpu/drm/amd/display/dc/core/dc_stream.c:402 dc_stream_set_cursor_position() warn: variable dereferenced before check 'stream' The value of 'dc' has been assigned after check whether 'stream' is NULL. Fix it by remove redundant assignment.