]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drm/nouveau: add missing header dependencies
authorBaoyou Xie <baoyou.xie@linaro.org>
Mon, 24 Oct 2016 03:09:02 +0000 (11:09 +0800)
committerBen Skeggs <bskeggs@redhat.com>
Mon, 7 Nov 2016 04:04:35 +0000 (14:04 +1000)
We get a few warnings when building kernel with W=1:
drivers/gpu/drm/nouveau/nvkm/core/firmware.c:34:1: warning: no previous prototype for 'nvkm_firmware_get' [-Wmissing-prototypes]
drivers/gpu/drm/nouveau/nvkm/core/firmware.c:58:1: warning: no previous prototype for 'nvkm_firmware_put' [-Wmissing-prototypes]
drivers/gpu/drm/nouveau/nvkm/subdev/fb/sddr3.c:69:1: warning: no previous prototype for 'nvkm_sddr3_calc' [-Wmissing-prototypes]
drivers/gpu/drm/nouveau/nvkm/subdev/fb/sddr2.c:60:1: warning: no previous prototype for 'nvkm_sddr2_calc' [-Wmissing-prototypes]
....

In fact, these functions are declared in
drivers/gpu/drm/nouveau/include/nvkm/core/firmware.h
drivers/gpu/drm/nouveau/nvkm/subdev/fb/ram.h
drivers/gpu/drm/nouveau/nvkm/subdev/volt/priv.h
drivers/gpu/drm/nouveau/nvkm/engine/gr/nv50.h
drivers/gpu/drm/nouveau/dispnv04/disp.h.
So this patch adds missing header dependencies.

Signed-off-by: Baoyou Xie <baoyou.xie@linaro.org>
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
drivers/gpu/drm/nouveau/dispnv04/overlay.c
drivers/gpu/drm/nouveau/nvkm/engine/gr/ctxnv50.c
drivers/gpu/drm/nouveau/nvkm/subdev/fb/sddr2.c
drivers/gpu/drm/nouveau/nvkm/subdev/fb/sddr3.c
drivers/gpu/drm/nouveau/nvkm/subdev/volt/gpio.c

index ec444eac6258c75124a4565ef22d0772d8cbd968..a79514d440b39a526cda9af5417556e697a73bdf 100644 (file)
@@ -33,7 +33,7 @@
 #include "nouveau_connector.h"
 #include "nouveau_display.h"
 #include "nvreg.h"
-
+#include "disp.h"
 
 struct nouveau_plane {
        struct drm_plane base;
index 1e13278cf3062941c39291ebae023ef05ac5b84f..c8bb9191f9a2b45e6d4c077d86da0b98503c9383 100644 (file)
 #define CP_SEEK_2      0x00c800ff
 
 #include "ctxnv40.h"
+#include "nv50.h"
 
 #include <subdev/fb.h>
 
index b9f1ffdfc6026fdf2356916883aedfc072082152..4dcd8742f2da21a61ba1b8b5ee0e18fcd3f98724 100644 (file)
@@ -23,6 +23,7 @@
  *          Ben Skeggs
  */
 #include "priv.h"
+#include "ram.h"
 
 struct ramxlat {
        int id;
index 26900333b1d6151c71fe39e07b2d4706ca8207c8..eca8a445eab359ecbe15a19bb1e4da8c52248d89 100644 (file)
@@ -23,6 +23,7 @@
  *         Roy Spliet <rspliet@eclipso.eu>
  */
 #include "priv.h"
+#include "ram.h"
 
 struct ramxlat {
        int id;
index d2bac1d7781905cfc9868adb5fd0435597d6d9a4..443c031b966b357ddc12653d222efb85947d5a61 100644 (file)
@@ -25,6 +25,7 @@
 #include <subdev/bios.h>
 #include <subdev/bios/gpio.h>
 #include <subdev/gpio.h>
+#include "priv.h"
 
 static const u8 tags[] = {
        DCB_GPIO_VID0, DCB_GPIO_VID1, DCB_GPIO_VID2, DCB_GPIO_VID3,