diff --git a/.pick_status.json b/.pick_status.json index 35009649e66..187ad24c7b3 100644 --- a/.pick_status.json +++ b/.pick_status.json @@ -3494,7 +3494,7 @@ "description": "nvk: Allow kepler in nvk_is_conformant()", "nominated": true, "nomination_type": 2, - "resolution": 0, + "resolution": 1, "main_sha": null, "because_sha": "f4b01bbfe7dc2d9f2cebebcc6410eff512ed3670", "notes": null diff --git a/src/nouveau/vulkan/nvk_physical_device.c b/src/nouveau/vulkan/nvk_physical_device.c index 3fd7db75405..22cea4542af 100644 --- a/src/nouveau/vulkan/nvk_physical_device.c +++ b/src/nouveau/vulkan/nvk_physical_device.c @@ -91,8 +91,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 */