From bf1d9d1339f49b6d839b0ba83d265d634486a407 Mon Sep 17 00:00:00 2001 From: leonperianu Date: Thu, 3 Apr 2025 05:56:53 +0100 Subject: [PATCH] pvr: Change has_fbcdc_algorithm to 1-bit bit-field This aligns it with the definitions of other device features. Signed-off-by: leonperianu Reviewed-by: Erik Faye-Lund Part-of: --- src/imagination/common/pvr_device_info.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imagination/common/pvr_device_info.h b/src/imagination/common/pvr_device_info.h index d34082f188b..adc850e850a 100644 --- a/src/imagination/common/pvr_device_info.h +++ b/src/imagination/common/pvr_device_info.h @@ -256,7 +256,7 @@ struct pvr_device_features { bool has_compute_overlap : 1; bool has_eight_output_registers : 1; bool has_fb_cdc_v4 : 1; - bool has_fbcdc_algorithm; + bool has_fbcdc_algorithm : 1; bool has_gpu_multicore_support : 1; bool has_gs_rta_support : 1; bool has_ipf_creq_pf : 1;