mirror of
https://github.com/outbackdingo/OpCore-Simplify.git
synced 2026-08-25 14:53:06 +00:00
Fix typo
This commit is contained in:
@@ -3172,7 +3172,7 @@ DefinitionBlock ("", "SSDT", 2, "ZPSS", "WMIS", 0x00000000)
|
|||||||
|
|
||||||
Method (_SB.WMIS.WQBI, 1, NotSerialized)
|
Method (_SB.WMIS.WQBI, 1, NotSerialized)
|
||||||
{
|
{
|
||||||
Return (\_TZ.WQBI (Arg0))
|
Return (\\_TZ.WQBI (Arg0))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
"""
|
"""
|
||||||
@@ -3246,9 +3246,6 @@ DefinitionBlock ("", "SSDT", 2, "ZPSS", "WMIS", 0x00000000)
|
|||||||
if self.is_intel_hedt_cpu(hardware_report.get("CPU").get("Processor Name"), hardware_report.get("CPU").get("Codename")):
|
if self.is_intel_hedt_cpu(hardware_report.get("CPU").get("Processor Name"), hardware_report.get("CPU").get("Codename")):
|
||||||
selected_patches.append("APIC")
|
selected_patches.append("APIC")
|
||||||
|
|
||||||
if "Intel" in hardware_report.get("CPU").get("Manufacturer"):
|
|
||||||
selected_patches.append("BUS0")
|
|
||||||
|
|
||||||
for device_name, device_info in disabled_devices.items():
|
for device_name, device_info in disabled_devices.items():
|
||||||
if "PCI" in device_info.get("Bus Type", "PCI"):
|
if "PCI" in device_info.get("Bus Type", "PCI"):
|
||||||
selected_patches.append("Disable Devices")
|
selected_patches.append("Disable Devices")
|
||||||
@@ -3291,6 +3288,9 @@ DefinitionBlock ("", "SSDT", 2, "ZPSS", "WMIS", 0x00000000)
|
|||||||
if "AMD" in hardware_report.get("CPU").get("Manufacturer") or hardware_report.get("CPU").get("Codename") in cpu_data.IntelCPUGenerations[:40]:
|
if "AMD" in hardware_report.get("CPU").get("Manufacturer") or hardware_report.get("CPU").get("Codename") in cpu_data.IntelCPUGenerations[:40]:
|
||||||
selected_patches.append("RTCAWAC")
|
selected_patches.append("RTCAWAC")
|
||||||
|
|
||||||
|
if "Intel" in hardware_report.get("CPU").get("Manufacturer"):
|
||||||
|
selected_patches.append("BUS0")
|
||||||
|
|
||||||
if "SURFACE" in hardware_report.get("Motherboard").get("Name"):
|
if "SURFACE" in hardware_report.get("Motherboard").get("Name"):
|
||||||
selected_patches.append("Surface Patch")
|
selected_patches.append("Surface Patch")
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user