Baoyou Xie
2016-Sep-13 12:17 UTC
[Nouveau] [PATCH] drm/nouveau/disp: remove unused function in sorg94.c
We get 1 warning when building kernel with W=1: drivers/gpu/drm/nouveau/nvkm/engine/disp/sorg94.c:49:1: warning: no previous prototype for 'g94_sor_output_new' [-Wmissing-prototypes] In fact, this function is called by no one and not exported, so this patch removes it. Signed-off-by: Baoyou Xie <baoyou.xie at linaro.org> --- drivers/gpu/drm/nouveau/nvkm/engine/disp/sorg94.c | 8 -------- 1 file changed, 8 deletions(-) diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/disp/sorg94.c b/drivers/gpu/drm/nouveau/nvkm/engine/disp/sorg94.c index 1bb9d66..4510cb6 100644 --- a/drivers/gpu/drm/nouveau/nvkm/engine/disp/sorg94.c +++ b/drivers/gpu/drm/nouveau/nvkm/engine/disp/sorg94.c @@ -45,14 +45,6 @@ static const struct nvkm_output_func g94_sor_output_func = { }; -int -g94_sor_output_new(struct nvkm_disp *disp, int index, - struct dcb_output *dcbE, struct nvkm_output **poutp) -{ - return nvkm_output_new_(&g94_sor_output_func, disp, - index, dcbE, poutp); -} - /******************************************************************************* * DisplayPort ******************************************************************************/ -- 2.7.4
Seemingly Similar Threads
- [PATCH 3/3] drm/nouveau: remove unused function
- [PATCH] kms/nv50: reject interlaced modes if the hardware doesn't support it
- [PATCH] drm/nouveau: Don't forget to label dp_aux devices
- [PATCH] drm/nv50/disp: ignore encoder initialization failures
- [PATCH 1/4] drm/nouveau/kms/nv50-: Probe SOR caps for DP interlacing support