summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c')
-rw-r--r--src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c b/src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c
index 888aebb2bd..b17dabc6ce 100644
--- a/src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c
+++ b/src/gallium/winsys/svga/drm/pb_buffer_simple_fenced.c
@@ -286,7 +286,7 @@ fenced_buffer_remove_locked(struct fenced_manager *fenced_mgr,
/**
* Wait for the fence to expire, and remove it from the fenced list.
*
- * This function will release and re-aquire the mutex, so any copy of mutable
+ * This function will release and re-acquire the mutex, so any copy of mutable
* state must be discarded after calling it.
*/
static INLINE enum pipe_error
@@ -321,7 +321,7 @@ fenced_buffer_finish_locked(struct fenced_manager *fenced_mgr,
/*
* Only proceed if the fence object didn't change in the meanwhile.
* Otherwise assume the work has been already carried out by another
- * thread that re-aquired the lock before us.
+ * thread that re-acquired the lock before us.
*/
proceed = fence == fenced_buf->fence ? TRUE : FALSE;