v3dv: initialize render_fd at the top of physical_device_init

This fixes an uninitialized variable warning.

Reviewed-by: Iago Toral Quiroga <itoral@igalia.com>
Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/8902>
This commit is contained in:
Arcady Goldmints-Orlov 2021-02-07 13:12:23 -05:00 committed by Marge Bot
parent df48267c65
commit 9e1aa23448

View file

@ -597,6 +597,7 @@ physical_device_init(struct v3dv_physical_device *device,
{
VkResult result = VK_SUCCESS;
int32_t master_fd = -1;
int32_t render_fd = -1;
struct vk_physical_device_dispatch_table dispatch_table;
vk_physical_device_dispatch_table_from_entrypoints
@ -610,7 +611,7 @@ physical_device_init(struct v3dv_physical_device *device,
assert(drm_render_device);
const char *path = drm_render_device->nodes[DRM_NODE_RENDER];
int32_t render_fd = open(path, O_RDWR | O_CLOEXEC);
render_fd = open(path, O_RDWR | O_CLOEXEC);
if (render_fd < 0) {
result = VK_ERROR_INCOMPATIBLE_DRIVER;
goto fail;