From ea6441b1d3ef095930f9e524d130c19046c55f52 Mon Sep 17 00:00:00 2001 From: Sean Rhodes Date: Wed, 26 Mar 2025 16:22:05 +0000 Subject: [PATCH] soc/intel/common/cnvi: Add missing PRRS name MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add the PRRS object that is used in the _RST method. Change-Id: I935fae3c215e48288d8856d7be5cacc4e261d86f Signed-off-by: Sean Rhodes Reviewed-on: https://review.coreboot.org/c/coreboot/+/87005 Reviewed-by: Matt DeVillier Tested-by: build bot (Jenkins) Reviewed-by: Jérémy Compostella --- src/soc/intel/common/block/cnvi/cnvi.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/soc/intel/common/block/cnvi/cnvi.c b/src/soc/intel/common/block/cnvi/cnvi.c index 88225fe1e8..1c668ba736 100644 --- a/src/soc/intel/common/block/cnvi/cnvi.c +++ b/src/soc/intel/common/block/cnvi/cnvi.c @@ -86,6 +86,11 @@ static void cnvw_fill_ssdt(const struct device *dev) acpigen_write_field("CWAR", fields2, ARRAY_SIZE(fields2), FIELD_BYTEACC | FIELD_NOLOCK | FIELD_PRESERVE); +/* + * Name (PRRS, Zero) + */ + acpigen_write_name_integer("PRRS", 0); + /* * Name (RSTT, Zero) */