1
0
Fork 0
mirror of https://github.com/tylernguyen/x1c6-hackintosh.git synced 2025-02-05 09:33:13 -06:00
x1c6-hackintosh/patches/SSDT-EXT1-FixShutdown.dsl

15 lines
336 B
Text
Raw Normal View History

// Fix "restart after shutdown"
// Credit RehabMan (Laptop-DSDT-Patch)
2020-06-03 08:32:15 -05:00
DefinitionBlock("", "SSDT", 2, "tyler", "EXT1", 0)
{
External (_SB_.PCI0.XHC_.PMEE, FieldUnitObj)
Method (EXT1, 1, NotSerialized)
{
If ((5 == Arg0) && CondRefOf (\_SB.PCI0.XHC.PMEE)) {
\_SB.PCI0.XHC.PMEE = 0
}
}
}
//EOF