From 47ef0d24703dc33ab318f49f53f5bb825876d2ad Mon Sep 17 00:00:00 2001 From: Faith Ekstrand Date: Tue, 12 Aug 2025 15:46:55 -0400 Subject: [PATCH] nvk: Allow kepler in nvk_is_conformant() Thanks to "Enable X platform" patches living way too long (Vulkan conformance has a 30 day delay), there was a little rebase fail and we turned on Kepler and then accidentally turned it back off. Fixes: f4b01bbfe7dc ("nvk: Add an nvk_is_conformant() helper") Part-of: --- src/nouveau/vulkan/nvk_physical_device.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/nouveau/vulkan/nvk_physical_device.c b/src/nouveau/vulkan/nvk_physical_device.c index ba698962e08..3bd19a8b272 100644 --- a/src/nouveau/vulkan/nvk_physical_device.c +++ b/src/nouveau/vulkan/nvk_physical_device.c @@ -86,8 +86,8 @@ nvk_is_conformant(const struct nv_device_info *info) if (info->type != NV_DEVICE_TYPE_DIS) return false; - /* Everything Maxwell through Ada is conformant */ - if (info->cls_eng3d >= MAXWELL_A && info->cls_eng3d <= ADA_A) + /* Everything Kepler through Ada is conformant */ + if (info->cls_eng3d >= KEPLER_A && info->cls_eng3d <= ADA_A) return true; /* And also Blackwell B */