Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1506475 > unrolled thread
| Started by | Baoyou Xie <baoyou.xie@linaro.org> |
|---|---|
| First post | 2016-10-22 11:50 +0200 |
| Last post | 2016-10-24 17:50 +0200 |
| Articles | 6 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH 01/17] drm/nouveau/core: add missing header dependencies Baoyou Xie <baoyou.xie@linaro.org> - 2016-10-22 11:50 +0200
[PATCH 10/17] drm/nouveau/device: mark symbol static where possible Baoyou Xie <baoyou.xie@linaro.org> - 2016-10-22 11:50 +0200
[PATCH 16/17] drm/nouveau/dispnv04: add missing header dependencies Baoyou Xie <baoyou.xie@linaro.org> - 2016-10-22 11:50 +0200
[PATCH 08/17] drm/nouveau/volt: add missing header dependencies Baoyou Xie <baoyou.xie@linaro.org> - 2016-10-22 11:50 +0200
Re: [Nouveau] [PATCH 01/17] drm/nouveau/core: add missing header dependencies Karol Herbst <karolherbst@gmail.com> - 2016-10-22 19:40 +0200
Re: [Nouveau] [PATCH 01/17] drm/nouveau/core: add missing header dependencies Karol Herbst <karolherbst@gmail.com> - 2016-10-24 17:50 +0200
| From | Baoyou Xie <baoyou.xie@linaro.org> |
|---|---|
| Date | 2016-10-22 11:50 +0200 |
| Subject | [PATCH 01/17] drm/nouveau/core: add missing header dependencies |
| Message-ID | <sv169-1EI-5@gated-at.bofh.it> |
We get 2 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] In fact, these functions are declared in drivers/gpu/drm/nouveau/include/nvkm/core/firmware.h. So this patch adds missing header dependencies. Signed-off-by: Baoyou Xie <baoyou.xie@linaro.org> --- drivers/gpu/drm/nouveau/nvkm/core/firmware.c | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/nouveau/nvkm/core/firmware.c b/drivers/gpu/drm/nouveau/nvkm/core/firmware.c index 34ecd4a..058ff46 100644 --- a/drivers/gpu/drm/nouveau/nvkm/core/firmware.c +++ b/drivers/gpu/drm/nouveau/nvkm/core/firmware.c @@ -20,6 +20,7 @@ * DEALINGS IN THE SOFTWARE. */ #include <core/device.h> +#include <core/firmware.h> /** * nvkm_firmware_get - load firmware from the official nvidia/chip/ directory -- 2.7.4
[toc] | [next] | [standalone]
| From | Baoyou Xie <baoyou.xie@linaro.org> |
|---|---|
| Date | 2016-10-22 11:50 +0200 |
| Subject | [PATCH 10/17] drm/nouveau/device: mark symbol static where possible |
| Message-ID | <sv16a-1EI-37@gated-at.bofh.it> |
| In reply to | #1506475 |
We get 1 warning when building kernel with W=1:
drivers/gpu/drm/nouveau/nvkm/engine/device/user.c:330:1: warning: no previous prototype for 'nvkm_udevice_new' [-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@linaro.org>
---
drivers/gpu/drm/nouveau/nvkm/engine/device/user.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/nouveau/nvkm/engine/device/user.c b/drivers/gpu/drm/nouveau/nvkm/engine/device/user.c
index 79a8f71..513ee6b 100644
--- a/drivers/gpu/drm/nouveau/nvkm/engine/device/user.c
+++ b/drivers/gpu/drm/nouveau/nvkm/engine/device/user.c
@@ -326,7 +326,7 @@ nvkm_udevice = {
.sclass = nvkm_udevice_child_get,
};
-int
+static int
nvkm_udevice_new(const struct nvkm_oclass *oclass, void *data, u32 size,
struct nvkm_object **pobject)
{
--
2.7.4
[toc] | [prev] | [next] | [standalone]
| From | Baoyou Xie <baoyou.xie@linaro.org> |
|---|---|
| Date | 2016-10-22 11:50 +0200 |
| Subject | [PATCH 16/17] drm/nouveau/dispnv04: add missing header dependencies |
| Message-ID | <sv16a-1EI-23@gated-at.bofh.it> |
| In reply to | #1506475 |
We get 1 warning when building kernel with W=1:
drivers/gpu/drm/nouveau/dispnv04/overlay.c:496:1: warning: no previous prototype for 'nouveau_overlay_init' [-Wmissing-prototypes]
In fact, this function is declared in
drivers/gpu/drm/nouveau/dispnv04/disp.h.
So this patch adds missing header dependencies.
Signed-off-by: Baoyou Xie <baoyou.xie@linaro.org>
---
drivers/gpu/drm/nouveau/dispnv04/overlay.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/nouveau/dispnv04/overlay.c b/drivers/gpu/drm/nouveau/dispnv04/overlay.c
index ec444ea..a79514d 100644
--- a/drivers/gpu/drm/nouveau/dispnv04/overlay.c
+++ b/drivers/gpu/drm/nouveau/dispnv04/overlay.c
@@ -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;
--
2.7.4
[toc] | [prev] | [next] | [standalone]
| From | Baoyou Xie <baoyou.xie@linaro.org> |
|---|---|
| Date | 2016-10-22 11:50 +0200 |
| Subject | [PATCH 08/17] drm/nouveau/volt: add missing header dependencies |
| Message-ID | <sv16a-1EI-29@gated-at.bofh.it> |
| In reply to | #1506475 |
We get 3 warnings when building kernel with W=1:
drivers/gpu/drm/nouveau/nvkm/subdev/volt/gpio.c:35:1: warning: no previous prototype for 'nvkm_voltgpio_get' [-Wmissing-prototypes]
drivers/gpu/drm/nouveau/nvkm/subdev/volt/gpio.c:54:1: warning: no previous prototype for 'nvkm_voltgpio_set' [-Wmissing-prototypes]
drivers/gpu/drm/nouveau/nvkm/subdev/volt/gpio.c:71:1: warning: no previous prototype for 'nvkm_voltgpio_init' [-Wmissing-prototypes]
In fact, these functions are declared in
drivers/gpu/drm/nouveau/nvkm/subdev/volt/priv.h.
So this patch adds missing header dependencies.
Signed-off-by: Baoyou Xie <baoyou.xie@linaro.org>
---
drivers/gpu/drm/nouveau/nvkm/subdev/volt/gpio.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/drivers/gpu/drm/nouveau/nvkm/subdev/volt/gpio.c b/drivers/gpu/drm/nouveau/nvkm/subdev/volt/gpio.c
index d2bac1d..443c031 100644
--- a/drivers/gpu/drm/nouveau/nvkm/subdev/volt/gpio.c
+++ b/drivers/gpu/drm/nouveau/nvkm/subdev/volt/gpio.c
@@ -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,
--
2.7.4
[toc] | [prev] | [next] | [standalone]
| From | Karol Herbst <karolherbst@gmail.com> |
|---|---|
| Date | 2016-10-22 19:40 +0200 |
| Subject | Re: [Nouveau] [PATCH 01/17] drm/nouveau/core: add missing header dependencies |
| Message-ID | <sv8qZ-6pE-9@gated-at.bofh.it> |
| In reply to | #1506475 |
I think it would be better to squash those commits: 1. for the includes 2. for static declerations 2016-10-22 11:41 GMT+02:00 Baoyou Xie <baoyou.xie@linaro.org>: > We get 2 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] > > In fact, these functions are declared in > drivers/gpu/drm/nouveau/include/nvkm/core/firmware.h. > So this patch adds missing header dependencies. > > Signed-off-by: Baoyou Xie <baoyou.xie@linaro.org> > --- > drivers/gpu/drm/nouveau/nvkm/core/firmware.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/gpu/drm/nouveau/nvkm/core/firmware.c b/drivers/gpu/drm/nouveau/nvkm/core/firmware.c > index 34ecd4a..058ff46 100644 > --- a/drivers/gpu/drm/nouveau/nvkm/core/firmware.c > +++ b/drivers/gpu/drm/nouveau/nvkm/core/firmware.c > @@ -20,6 +20,7 @@ > * DEALINGS IN THE SOFTWARE. > */ > #include <core/device.h> > +#include <core/firmware.h> > > /** > * nvkm_firmware_get - load firmware from the official nvidia/chip/ directory > -- > 2.7.4 > > _______________________________________________ > Nouveau mailing list > Nouveau@lists.freedesktop.org > https://lists.freedesktop.org/mailman/listinfo/nouveau
[toc] | [prev] | [next] | [standalone]
| From | Karol Herbst <karolherbst@gmail.com> |
|---|---|
| Date | 2016-10-24 17:50 +0200 |
| Subject | Re: [Nouveau] [PATCH 01/17] drm/nouveau/core: add missing header dependencies |
| Message-ID | <svPFD-17R-11@gated-at.bofh.it> |
| In reply to | #1506569 |
2016-10-24 9:13 GMT+02:00 Baoyou Xie <baoyou.xie@linaro.org>: > > > On 23 October 2016 at 01:32, Karol Herbst <karolherbst@gmail.com> wrote: >> >> I think it would be better to squash those commits: >> 1. for the includes >> 2. for static declerations >> > OK, I have resent new patch that squash those commits. > thanks, this is much easier to review and keeps the git history clean :) Will try to make a test with those patches over the next days, but it looks fine as it is already. >> >> 2016-10-22 11:41 GMT+02:00 Baoyou Xie <baoyou.xie@linaro.org>: >> > We get 2 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] >> > >> > In fact, these functions are declared in >> > drivers/gpu/drm/nouveau/include/nvkm/core/firmware.h. >> > So this patch adds missing header dependencies. >> > >> > Signed-off-by: Baoyou Xie <baoyou.xie@linaro.org> >> > --- >> > drivers/gpu/drm/nouveau/nvkm/core/firmware.c | 1 + >> > 1 file changed, 1 insertion(+) >> > >> > diff --git a/drivers/gpu/drm/nouveau/nvkm/core/firmware.c >> > b/drivers/gpu/drm/nouveau/nvkm/core/firmware.c >> > index 34ecd4a..058ff46 100644 >> > --- a/drivers/gpu/drm/nouveau/nvkm/core/firmware.c >> > +++ b/drivers/gpu/drm/nouveau/nvkm/core/firmware.c >> > @@ -20,6 +20,7 @@ >> > * DEALINGS IN THE SOFTWARE. >> > */ >> > #include <core/device.h> >> > +#include <core/firmware.h> >> > >> > /** >> > * nvkm_firmware_get - load firmware from the official nvidia/chip/ >> > directory >> > -- >> > 2.7.4 >> > >> > _______________________________________________ >> > Nouveau mailing list >> > Nouveau@lists.freedesktop.org >> > https://lists.freedesktop.org/mailman/listinfo/nouveau > >
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web