Message ID | 20220222131701.356117-10-maira.canal@usp.br (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | Fix multiple compilation warnings | expand |
Applied. Thanks! On Tue, Feb 22, 2022 at 8:18 AM Maíra Canal <maira.canal@usp.br> wrote: > > Include the header with the prototype to silence the following clang > warning: > > drivers/gpu/drm/amd/amdgpu/../display/dc/dcn201/dcn201_init.c:127:6: > warning: no previous prototype for function 'dcn201_hw_sequencer_construct' > [-Wmissing-prototypes] > void dcn201_hw_sequencer_construct(struct dc *dc) > ^ > > Signed-off-by: Maíra Canal <maira.canal@usp.br> > --- > drivers/gpu/drm/amd/display/dc/dcn201/dcn201_init.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/gpu/drm/amd/display/dc/dcn201/dcn201_init.c b/drivers/gpu/drm/amd/display/dc/dcn201/dcn201_init.c > index f1f89f93603f..1826dd7f3da1 100644 > --- a/drivers/gpu/drm/amd/display/dc/dcn201/dcn201_init.c > +++ b/drivers/gpu/drm/amd/display/dc/dcn201/dcn201_init.c > @@ -27,6 +27,7 @@ > #include "dcn10/dcn10_hw_sequencer.h" > #include "dcn20/dcn20_hwseq.h" > #include "dcn201_hwseq.h" > +#include "dcn201_init.h" > > static const struct hw_sequencer_funcs dcn201_funcs = { > .program_gamut_remap = dcn10_program_gamut_remap, > -- > 2.35.1 >
diff --git a/drivers/gpu/drm/amd/display/dc/dcn201/dcn201_init.c b/drivers/gpu/drm/amd/display/dc/dcn201/dcn201_init.c index f1f89f93603f..1826dd7f3da1 100644 --- a/drivers/gpu/drm/amd/display/dc/dcn201/dcn201_init.c +++ b/drivers/gpu/drm/amd/display/dc/dcn201/dcn201_init.c @@ -27,6 +27,7 @@ #include "dcn10/dcn10_hw_sequencer.h" #include "dcn20/dcn20_hwseq.h" #include "dcn201_hwseq.h" +#include "dcn201_init.h" static const struct hw_sequencer_funcs dcn201_funcs = { .program_gamut_remap = dcn10_program_gamut_remap,
Include the header with the prototype to silence the following clang warning: drivers/gpu/drm/amd/amdgpu/../display/dc/dcn201/dcn201_init.c:127:6: warning: no previous prototype for function 'dcn201_hw_sequencer_construct' [-Wmissing-prototypes] void dcn201_hw_sequencer_construct(struct dc *dc) ^ Signed-off-by: Maíra Canal <maira.canal@usp.br> --- drivers/gpu/drm/amd/display/dc/dcn201/dcn201_init.c | 1 + 1 file changed, 1 insertion(+)