From 306de6782c59a676e33d49a7b81fd4570eae1132 Mon Sep 17 00:00:00 2001 From: Erik Faye-Lund Date: Thu, 11 Dec 2025 15:33:54 +0100 Subject: [PATCH] pvr: disable has_gs_rta_support for ge7800 as well The MR adding support for ge7800 (!38211) was submitted while the MR that disabled has_gs_rta_support (!38024) was under review. It seems nobody noticed that we missed disabling it here as well. Let's fix that up, so we don't try to use this when it's not expected to work. Fixes: c60232c0c59 ("pvr: temporarily disable gs_rta_support on all cores") Reviewed-by: Frank Binns Reviewed-by: Alessio Belle Reviewed-by: Simon Perretta Part-of: --- src/imagination/common/device_info/ge7800.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imagination/common/device_info/ge7800.h b/src/imagination/common/device_info/ge7800.h index f6635a3e52e..53faaea5ff3 100644 --- a/src/imagination/common/device_info/ge7800.h +++ b/src/imagination/common/device_info/ge7800.h @@ -20,7 +20,7 @@ static const struct pvr_device_features pvr_device_features_15_V_1_64 = { .has_common_store_size_in_dwords = true, .has_compute = true, .has_fbcdc_algorithm = true, - .has_gs_rta_support = true, + /* .has_gs_rta_support = true, */ .has_isp_max_tiles_in_flight = true, .has_isp_samples_per_pixel = true, .has_max_instances_per_pds_task = true,