diff --git a/docs/drivers/panfrost.rst b/docs/drivers/panfrost.rst index 9c064642427..55c0d92b226 100644 --- a/docs/drivers/panfrost.rst +++ b/docs/drivers/panfrost.rst @@ -9,7 +9,8 @@ and `Mali-G610 `__, +but *non-conformant* on other GPUs. The following hardware is currently supported: diff --git a/src/panfrost/vulkan/panvk_physical_device.c b/src/panfrost/vulkan/panvk_physical_device.c index c32f6d0161f..68c00505f86 100644 --- a/src/panfrost/vulkan/panvk_physical_device.c +++ b/src/panfrost/vulkan/panvk_physical_device.c @@ -1123,7 +1123,8 @@ panvk_physical_device_init(struct panvk_physical_device *device, if (result != VK_SUCCESS) goto fail; - vk_warn_non_conformant_implementation("panvk"); + if (arch != 10) + vk_warn_non_conformant_implementation("panvk"); struct vk_device_extension_table supported_extensions; get_device_extensions(device, &supported_extensions);