From 1750877ffd05074054efb8a143296074dd306d22 Mon Sep 17 00:00:00 2001 From: Tim Wawrzynczak Date: Tue, 2 Aug 2022 08:44:37 -0600 Subject: mb/google/brya/acpi: Fix NVJT subfunction IDs The POWERCONTROL and PLATPOLICY NVJT subfunctions were incorrectly set to 2 and 3, respectively. While looking at the ACPI code, Nvidia noticed these are supposed to be 3 and 4, also respectively, so this patch fixes that. BUG=b:214581763 Signed-off-by: Tim Wawrzynczak Change-Id: I0f808aba7072b943ee2fad20e06ff39a9b54903d Reviewed-on: https://review.coreboot.org/c/coreboot/+/66374 Tested-by: build bot (Jenkins) Reviewed-by: Eric Lai Reviewed-by: Ivy Jian --- src/mainboard/google/brya/acpi/nvjt.asl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mainboard/google/brya/acpi/nvjt.asl b/src/mainboard/google/brya/acpi/nvjt.asl index 9c422d464400..64de3a7396a6 100644 --- a/src/mainboard/google/brya/acpi/nvjt.asl +++ b/src/mainboard/google/brya/acpi/nvjt.asl @@ -2,8 +2,8 @@ #define JT_FUNC_SUPPORT 0 #define JT_FUNC_CAPS 1 -#define JT_FUNC_POWERCONTROL 2 -#define JT_FUNC_PLATPOLICY 3 +#define JT_FUNC_POWERCONTROL 3 +#define JT_FUNC_PLATPOLICY 4 Method (NVJT, 2, Serialized) { -- cgit v1.2.3