v3dv: Drop v3dv_queue::flags

Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/13003>
This commit is contained in:
Jason Ekstrand 2021-09-23 11:43:29 -05:00 committed by Marge Bot
parent 8619c6df62
commit 713af72048
2 changed files with 0 additions and 2 deletions

View file

@ -1685,7 +1685,6 @@ queue_init(struct v3dv_device *device, struct v3dv_queue *queue,
if (result != VK_SUCCESS)
return result;
queue->device = device;
queue->flags = 0;
queue->noop_job = NULL;
list_inithead(&queue->submit_wait_list);
pthread_mutex_init(&queue->mutex, NULL);

View file

@ -222,7 +222,6 @@ struct v3dv_queue {
struct vk_queue vk;
struct v3dv_device *device;
VkDeviceQueueCreateFlags flags;
/* A list of active v3dv_queue_submit_wait_info */
struct list_head submit_wait_list;