Baoyou Xie
2016-Aug-29 13:02 UTC
[Nouveau] [PATCH v2] drm/nouveau/gr: mark gm107_grctx_generate_tpcid() static
We get 1 warning when build kernel with W=1: drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c:937:1: warning: no previous prototype for 'gm107_grctx_generate_tpcid' [-Wmissing-prototypes] In fact, this function is only used in the file in which it is declared and don't need a declaration, but can be made static. so this patch marks this function with 'static'. Signed-off-by: Baoyou Xie <baoyou.xie at linaro.org> --- drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c b/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c index 6d3c501..4c4b5ab 100644 --- a/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c +++ b/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c @@ -933,7 +933,7 @@ gm107_grctx_generate_attrib(struct gf100_grctx *info) } } -void +static void gm107_grctx_generate_tpcid(struct gf100_gr *gr) { struct nvkm_device *device = gr->base.engine.subdev.device; -- 2.7.4
Sean Paul
2016-Aug-29 16:01 UTC
[Nouveau] [PATCH v2] drm/nouveau/gr: mark gm107_grctx_generate_tpcid() static
On Mon, Aug 29, 2016 at 9:02 AM, Baoyou Xie <baoyou.xie at linaro.org> wrote:> We get 1 warning when build kernel with W=1: > drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c:937:1: warning: no previous prototype for 'gm107_grctx_generate_tpcid' [-Wmissing-prototypes] > > In fact, this function is only used in the file in which it is > declared and don't need a declaration, but can be made static. > so this patch marks this function with 'static'. >It would make things a lot easier if you either consolidated all of these static changes into one patch, or released them as a series. Sean> Signed-off-by: Baoyou Xie <baoyou.xie at linaro.org> > --- > drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c b/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c > index 6d3c501..4c4b5ab 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c > +++ b/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c > @@ -933,7 +933,7 @@ gm107_grctx_generate_attrib(struct gf100_grctx *info) > } > } > > -void > +static void > gm107_grctx_generate_tpcid(struct gf100_gr *gr) > { > struct nvkm_device *device = gr->base.engine.subdev.device; > -- > 2.7.4 >
Baoyou Xie
2016-Aug-30 11:39 UTC
[Nouveau] [PATCH v2] drm/nouveau/gr: mark gm107_grctx_generate_tpcid() static
On 30 August 2016 at 00:01, Sean Paul <seanpaul at google.com> wrote:> On Mon, Aug 29, 2016 at 9:02 AM, Baoyou Xie <baoyou.xie at linaro.org> wrote: > > We get 1 warning when build kernel with W=1: > > drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c:937:1: warning: no > previous prototype for 'gm107_grctx_generate_tpcid' [-Wmissing-prototypes] > > > > In fact, this function is only used in the file in which it is > > declared and don't need a declaration, but can be made static. > > so this patch marks this function with 'static'. > > > > It would make things a lot easier if you either consolidated all of > these static changes into one patch, or released them as a series. > >Do you mean that I need to consolidate all of them into one patch this time? or next time?> Sean > > > > Signed-off-by: Baoyou Xie <baoyou.xie at linaro.org> > > --- > > drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c | 2 +- > > 1 file changed, 1 insertion(+), 1 deletion(-) > > > > diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c > b/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c > > index 6d3c501..4c4b5ab 100644 > > --- a/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c > > +++ b/drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxgm107.c > > @@ -933,7 +933,7 @@ gm107_grctx_generate_attrib(struct gf100_grctx > *info) > > } > > } > > > > -void > > +static void > > gm107_grctx_generate_tpcid(struct gf100_gr *gr) > > { > > struct nvkm_device *device = gr->base.engine.subdev.device; > > -- > > 2.7.4 > > >-------------- next part -------------- An HTML attachment was scrubbed... URL: <https://lists.freedesktop.org/archives/nouveau/attachments/20160830/624f87e7/attachment-0001.html>
Apparently Analagous Threads
- [PATCH v2] drm/nouveau/gr: mark gm107_grctx_generate_tpcid() static
- [PATCH v2] drm/nouveau/gr: mark gm107_grctx_generate_tpcid() static
- [PATCH] drm/nouveau/gr: mark symbols static where possible
- [PATCH] drm/nouveau: silence warnings reported during builds with W=1
- [PATCH 2/3] drm/nouveau: mark symbols static where possible