summaryrefslogtreecommitdiff
path: root/linux-core/ttm/ttm_fence_user.c
diff options
context:
space:
mode:
Diffstat (limited to 'linux-core/ttm/ttm_fence_user.c')
-rw-r--r--linux-core/ttm/ttm_fence_user.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/linux-core/ttm/ttm_fence_user.c b/linux-core/ttm/ttm_fence_user.c
index f382ef2c..92785c28 100644
--- a/linux-core/ttm/ttm_fence_user.c
+++ b/linux-core/ttm/ttm_fence_user.c
@@ -60,14 +60,14 @@ static struct ttm_fence_user_object *ttm_fence_user_object_lookup(struct
base = ttm_base_object_lookup(tfile, handle);
if (unlikely(base == NULL)) {
- printk(KERN_ERR "Invalid fence handle 0x%08lx\n",
+ printk(KERN_ERR TTM_PFX "Invalid fence handle 0x%08lx\n",
(unsigned long)handle);
return NULL;
}
if (unlikely(base->object_type != ttm_fence_type)) {
ttm_base_object_unref(&base);
- printk(KERN_ERR "Invalid fence handle 0x%08lx\n",
+ printk(KERN_ERR TTM_PFX "Invalid fence handle 0x%08lx\n",
(unsigned long)handle);
return NULL;
}