diff --git a/.pick_status.json b/.pick_status.json index 02092edc5b1..3d3c8c47570 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -1724,7 +1724,7 @@ "description": "v3dv: don't check if DRM device is master", "nominated": true, "nomination_type": 2, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "2af12c5b36ec8591cff812e91cb117929de5f84e", "notes": null diff --git a/src/broadcom/vulkan/v3dv_device.c b/src/broadcom/vulkan/v3dv_device.c index f9181fda0ec..09448f20f77 100644 --- a/src/broadcom/vulkan/v3dv_device.c +++ b/src/broadcom/vulkan/v3dv_device.c @@ -1508,10 +1508,6 @@ try_display_device(struct v3dv_instance *instance, const char *path, goto fail; } - /* If the display device isn't the DRM master, we can't get its resources */ - if (!drmIsMaster(*fd)) - goto fail; - drmModeResPtr mode_res = drmModeGetResources(*fd); if (!mode_res) { mesa_loge("Failed to get DRM mode resources: %s\n", strerror(errno));