From 3365bc8b97d139595c652787c17ab476b895f5a1 Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Mon, 14 Oct 2024 04:39:30 +0700 Subject: [PATCH] Apply RTCAWAC ACPI patch for AMD CPU systems --- Scripts/acpi_guru.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/acpi_guru.py b/Scripts/acpi_guru.py index e8a5335..672e2bf 100644 --- a/Scripts/acpi_guru.py +++ b/Scripts/acpi_guru.py @@ -3209,7 +3209,7 @@ DefinitionBlock ("", "SSDT", 2, "ZPSS", "SURFACE", 0x00001000) if hardware_report.get("Motherboard").get("Chipset") in ("C610/X99", "Wellsburg", "X299"): selected_patches.append("RTC0") - if self.utils.contains_any(chipset_data.IntelChipsets, hardware_report.get("Motherboard").get("Chipset"), start=89): + if "AMD" in hardware_report.get("CPU").get("Manufacturer") or self.utils.contains_any(chipset_data.IntelChipsets, hardware_report.get("Motherboard").get("Chipset"), start=89): selected_patches.append("RTCAWAC") selected_patches.append("PRW")