From: Chia-I Wu Date: Tue, 15 Jun 2021 00:27:23 +0000 (-0700) Subject: venus: be verbose about which physical devices are skipped X-Git-Tag: upstream/21.2.3~1895 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=17375c5d2dbb172f1e711d11bec5069cd427ef6e;p=platform%2Fupstream%2Fmesa.git venus: be verbose about which physical devices are skipped Signed-off-by: Chia-I Wu Reviewed-by: Yiwei Zhang Part-of: --- diff --git a/src/virtio/vulkan/vn_device.c b/src/virtio/vulkan/vn_device.c index 4aa3628..206675f 100644 --- a/src/virtio/vulkan/vn_device.c +++ b/src/virtio/vulkan/vn_device.c @@ -1680,8 +1680,8 @@ vn_physical_device_init_renderer_version( instance, vn_physical_device_to_handle(physical_dev), &props); if (props.apiVersion < VN_MIN_RENDERER_VERSION) { if (VN_DEBUG(INIT)) { - vn_log(instance, "unsupported renderer device version %d.%d", - VK_VERSION_MAJOR(props.apiVersion), + vn_log(instance, "%s has unsupported renderer device version %d.%d", + props.deviceName, VK_VERSION_MAJOR(props.apiVersion), VK_VERSION_MINOR(props.apiVersion)); } return VK_ERROR_INITIALIZATION_FAILED;