mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2025-12-25 02:30:12 +01:00
remove unnecessary double-semicolon
Signed-off-by: Eric Engestrom <eric.engestrom@imgtec.com> Reviewed-by: Christian König <christian.koenig@amd.com> Reviewed-by: Emil Velikov <emil.velikov@collabora.com>
This commit is contained in:
parent
6f0f6cee5e
commit
089d45456b
3 changed files with 3 additions and 3 deletions
|
|
@ -582,7 +582,7 @@ static int amdgpu_cs_reset_sem(amdgpu_semaphore_handle sem)
|
|||
if (!sem || !sem->signal_fence.context)
|
||||
return -EINVAL;
|
||||
|
||||
sem->signal_fence.context = NULL;;
|
||||
sem->signal_fence.context = NULL;
|
||||
sem->signal_fence.ip_type = 0;
|
||||
sem->signal_fence.ip_instance = 0;
|
||||
sem->signal_fence.ring = 0;
|
||||
|
|
|
|||
|
|
@ -533,7 +533,7 @@ err_free_userptr:
|
|||
fail:
|
||||
g2d_fini(ctx);
|
||||
|
||||
return ret;;
|
||||
return ret;
|
||||
}
|
||||
|
||||
#if EXYNOS_G2D_USERPTR_TEST
|
||||
|
|
|
|||
|
|
@ -244,7 +244,7 @@ static int printFrameBuffer(int fd, drmModeResPtr res, drmModeFBPtr fb)
|
|||
printf("\thandle : %i\n", fb->handle);
|
||||
printf("\twidth : %i\n", fb->width);
|
||||
printf("\theight : %i\n", fb->height);
|
||||
printf("\tpitch : %i\n", fb->pitch);;
|
||||
printf("\tpitch : %i\n", fb->pitch);
|
||||
printf("\tbpp : %i\n", fb->bpp);
|
||||
printf("\tdepth : %i\n", fb->depth);
|
||||
printf("\tbuffer_id : %i\n", fb->handle);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue