Fix missing \n on some DRM_ERROR in i915_dma.c

main
Eric Anholt 2007-10-24 16:27:46 -07:00
parent fd7c24753c
commit 83199c257e
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}