mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-08 16:18:52 +02:00
Fix missing \n on some DRM_ERROR in i915_dma.c
This commit is contained in:
parent
fd7c24753c
commit
83199c257e
1 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue