mirror of
https://github.com/tylernguyen/x1c6-hackintosh.git
synced 2025-02-05 09:33:13 -06:00
14 lines
335 B
Text
14 lines
335 B
Text
// Fix "restart after shutdown"
|
|
// Credit RehabMan (Laptop-DSDT-Patch)
|
|
DefinitionBlock("", "SSDT", 2, "OCLT", "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
|