nit: "Add missing function definition" On 2022-07-06 10:05, Rodrigo Siqueira wrote: > Kernel test robot reported this GCC error: > > warning: no previous prototype for 'dc_reset_state' [-Wmissing-prototypes] > 2720 | void dc_reset_state(struct dc *dc, struct dc_state *context) > > This commit adds the missing prototype. > > Reported-by: kernel test robot <lkp@xxxxxxxxx> > Signed-off-by: Rodrigo Siqueira <Rodrigo.Siqueira@xxxxxxx> Reviewed-by: Harry Wentland <harry.wentland@xxxxxxx> Harry > --- > drivers/gpu/drm/amd/display/dc/dc.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/gpu/drm/amd/display/dc/dc.h b/drivers/gpu/drm/amd/display/dc/dc.h > index 02bbc90a2c80..7586500ec87f 100644 > --- a/drivers/gpu/drm/amd/display/dc/dc.h > +++ b/drivers/gpu/drm/amd/display/dc/dc.h > @@ -1209,6 +1209,7 @@ bool dc_commit_state(struct dc *dc, struct dc_state *context); > > struct dc_state *dc_create_state(struct dc *dc); > struct dc_state *dc_copy_state(struct dc_state *src_ctx); > +void dc_reset_state(struct dc *dc, struct dc_state *context); > void dc_retain_state(struct dc_state *context); > void dc_release_state(struct dc_state *context); >