diff options
author | Eric Anholt <eric@anholt.net> | 2007-10-24 16:27:46 -0700 |
---|---|---|
committer | Eric Anholt <eric@anholt.net> | 2007-10-24 16:27:51 -0700 |
commit | 83199c257ea68a7cc0c6928109ff77bf25131819 (patch) | |
tree | fc73ad8400a877be5d4570c4e6020794bc804cf1 /shared-core | |
parent | fd7c24753c4020a0022aaa183cfe8fc04a307abd (diff) |
Fix missing \n on some DRM_ERROR in i915_dma.c
Diffstat (limited to 'shared-core')
-rw-r--r-- | shared-core/i915_dma.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shared-core/i915_dma.c b/shared-core/i915_dma.c index 9bc7431d..eb8c9153 100644 --- a/shared-core/i915_dma.c +++ b/shared-core/i915_dma.c @@ -494,7 +494,7 @@ static int i915_dispatch_cmdbuffer(struct drm_device * dev, int i = 0, count, ret; if (cmd->sz & 0x3) { - DRM_ERROR("alignment"); + DRM_ERROR("alignment\n"); return -EINVAL; } @@ -532,7 +532,7 @@ static int i915_dispatch_batchbuffer(struct drm_device * dev, RING_LOCALS; if ((batch->start | batch->used) & 0x7) { - DRM_ERROR("alignment"); + DRM_ERROR("alignment\n"); return -EINVAL; } |