From c1432f408531fb1630dcd2189c9f2138d13cabf2 Mon Sep 17 00:00:00 2001 From: Sean Rhodes Date: Tue, 7 Jan 2025 19:42:45 +0000 Subject: [PATCH] soc/intel/common/cnvi: Fix path for CFLR method The CLFR method exists outside the CNVi device, so add `^` to allow it to be found. This fixes the SSDT and allows the method to be used. TEST=build/boot starlabs/starlite_adl Change-Id: I1158cf1ccf50d9095fdab8d2d663041ef1985513 Signed-off-by: Sean Rhodes Reviewed-on: https://review.coreboot.org/c/coreboot/+/85885 Tested-by: build bot (Jenkins) Reviewed-by: Matt DeVillier --- src/soc/intel/common/block/cnvi/cnvi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/soc/intel/common/block/cnvi/cnvi.c b/src/soc/intel/common/block/cnvi/cnvi.c index 94fe21f94d..5e75f6d492 100644 --- a/src/soc/intel/common/block/cnvi/cnvi.c +++ b/src/soc/intel/common/block/cnvi/cnvi.c @@ -189,7 +189,7 @@ static void cnvw_fill_ssdt(const struct device *dev) acpigen_write_if_lequal_op_int(LOCAL0_OP, 0); { - acpigen_emit_namestring("CFLR"); + acpigen_emit_namestring("^CFLR"); acpigen_write_store_int_to_namestr(1, "PRRS");