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
335 B
Text
Raw Normal View History

// Fix "restart after shutdown"
// Credit RehabMan (Laptop-DSDT-Patch)
DefinitionBlock("", "SSDT", 2, "OCLT", "EXT4", 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