summaryrefslogtreecommitdiff
path: root/nvkm/core
diff options
context:
space:
mode:
authorBen Skeggs <bskeggs@redhat.com>2014-05-16 13:52:19 +1000
committerBen Skeggs <bskeggs@redhat.com>2014-06-07 18:00:03 +1000
commitcb16ff157fa6ec66013b05361c0080c3f034f5b2 (patch)
tree9d0c63f77c07dfd3dfe571d10e0fc1bf9d8c5669 /nvkm/core
parent337ede307d861d89770682cd1256839603fb3c1c (diff)
downloadnouveau-cb16ff157fa6ec66013b05361c0080c3f034f5b2.tar.gz
core: punt all object state change messages to trace level
Leave debug for the more interesting bits of info. Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
Diffstat (limited to 'nvkm/core')
-rw-r--r--nvkm/core/object.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/nvkm/core/object.c b/nvkm/core/object.c
index 7f48e2882..124538555 100644
--- a/nvkm/core/object.c
+++ b/nvkm/core/object.c
@@ -156,7 +156,7 @@ nouveau_object_ctor(struct nouveau_object *parent,
}
if (ret == 0) {
- nv_debug(object, "created\n");
+ nv_trace(object, "created\n");
atomic_set(&object->refcount, 1);
}
@@ -166,7 +166,7 @@ nouveau_object_ctor(struct nouveau_object *parent,
static void
nouveau_object_dtor(struct nouveau_object *object)
{
- nv_debug(object, "destroying\n");
+ nv_trace(object, "destroying\n");
nv_ofuncs(object)->dtor(object);
}
@@ -337,7 +337,7 @@ nouveau_object_inc(struct nouveau_object *object)
goto fail_self;
}
- nv_debug(object, "initialised\n");
+ nv_trace(object, "initialised\n");
return 0;
fail_self:
@@ -375,7 +375,7 @@ nouveau_object_decf(struct nouveau_object *object)
if (object->parent)
nouveau_object_dec(object->parent, false);
- nv_debug(object, "stopped\n");
+ nv_trace(object, "stopped\n");
return 0;
}
@@ -411,7 +411,7 @@ nouveau_object_decs(struct nouveau_object *object)
}
}
- nv_debug(object, "suspended\n");
+ nv_trace(object, "suspended\n");
return 0;
fail_parent: