diff options
Diffstat (limited to 'src/gallium/drivers/rbug/rbug_screen.h')
-rw-r--r-- | src/gallium/drivers/rbug/rbug_screen.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gallium/drivers/rbug/rbug_screen.h b/src/gallium/drivers/rbug/rbug_screen.h index 9e2d8ae253f..1972005753b 100644 --- a/src/gallium/drivers/rbug/rbug_screen.h +++ b/src/gallium/drivers/rbug/rbug_screen.h @@ -71,7 +71,7 @@ rbug_screen(struct pipe_screen *screen) mtx_lock(&scr->list_mutex); \ insert_at_head(&scr->name, &obj->list); \ scr->num_##name++; \ - pipe_mutex_unlock(scr->list_mutex); \ + mtx_unlock(&scr->list_mutex); \ } while (0) #define rbug_screen_remove_from_list(scr, name, obj) \ @@ -79,7 +79,7 @@ rbug_screen(struct pipe_screen *screen) mtx_lock(&scr->list_mutex); \ remove_from_list(&obj->list); \ scr->num_##name--; \ - pipe_mutex_unlock(scr->list_mutex); \ + mtx_unlock(&scr->list_mutex); \ } while (0) |