summaryrefslogtreecommitdiff
path: root/linux-core/drm_fence.c
diff options
context:
space:
mode:
authorThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-10-19 17:00:03 +0200
committerThomas Hellstrom <thomas-at-tungstengraphics-dot-com>2006-10-19 17:00:03 +0200
commit5de4665747c441b2a8e82b020cc386f2d974499d (patch)
tree1b3b4103bb13e5d9797251926f33582bdb89ee12 /linux-core/drm_fence.c
parente22b04f807b9869c8c89b6316214517f5da13322 (diff)
parente8ba62db722eb0b915377269d7e1c3a039928669 (diff)
Importing fixes from drm-ttm-0-2-branch
Diffstat (limited to 'linux-core/drm_fence.c')
-rw-r--r--linux-core/drm_fence.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/linux-core/drm_fence.c b/linux-core/drm_fence.c
index aa382046..f656340e 100644
--- a/linux-core/drm_fence.c
+++ b/linux-core/drm_fence.c
@@ -311,7 +311,9 @@ int drm_fence_object_wait(drm_device_t * dev,
ret = -EBUSY;
if (ret) {
if (ret == -EBUSY) {
- DRM_ERROR("Fence timout. GPU lockup.\n");
+ DRM_ERROR("Fence timeout. "
+ "GPU lockup or fence driver was "
+ "taken down.\n");
}
return ((ret == -EINTR) ? -EAGAIN : ret);
}