Displaying 2 results from an estimated 2 matches for "0daab62".
Did you mean:
0daab1b
2012 Nov 06
1
[PATCH] nouveau: Fix crash after D3
...u/dmesg-fix.txt
Signed-off-by: Daniel J Blueman <daniel at quora.org>
---
drivers/gpu/drm/nouveau/core/core/object.c | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/core/core/object.c b/drivers/gpu/drm/nouveau/core/core/object.c
index 0daab62..3da3525 100644
--- a/drivers/gpu/drm/nouveau/core/core/object.c
+++ b/drivers/gpu/drm/nouveau/core/core/object.c
@@ -354,12 +354,16 @@ static int
nouveau_object_decf(struct nouveau_object *object)
{
int ret;
+ struct nouveau_ofuncs *pfuncs;
nv_trace(object, "stopping...\n");
-...
2012 Aug 19
1
[PATCH 06/10] drm/nouveau: sparse fixes
...com>
---
drivers/gpu/drm/nouveau/core/core/object.c | 2 +-
drivers/gpu/drm/nouveau/core/subdev/device/base.c | 1 -
2 files changed, 1 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/nouveau/core/core/object.c b/drivers/gpu/drm/nouveau/core/core/object.c
index d94cb66..0daab62 100644
--- a/drivers/gpu/drm/nouveau/core/core/object.c
+++ b/drivers/gpu/drm/nouveau/core/core/object.c
@@ -449,7 +449,7 @@ nouveau_object_dec(struct nouveau_object *object, bool suspend)
}
void
-nouveau_object_debug()
+nouveau_object_debug(void)
{
#ifdef NOUVEAU_OBJECT_MAGIC
struct nouvea...