From 7ff400d2e98e39a9f0aab7e1dec92899bb645f66 Mon Sep 17 00:00:00 2001 From: Hoang Hong Quan Date: Wed, 7 May 2025 11:00:54 +0700 Subject: [PATCH] Skip SSDT disabling for integrated GPUs --- 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 7ff2092..abe2a6d 100644 --- a/Scripts/acpi_guru.py +++ b/Scripts/acpi_guru.py @@ -1848,7 +1848,7 @@ DefinitionBlock ("", "SSDT", 2, "ZPSS", "[[ALSName]]", 0x00000000) continue ssdt_name = None - if "GPU" in device_name: + if "GPU" in device_name and device_props.get("Device Type") != "Integrated GPU": ssdt_name = "SSDT-Disable_GPU_{}".format(device_props.get("ACPI Path").split(".")[2]) target_device = device_props.get("ACPI Path")