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-EXT4-WakeScreen.dsl

33 lines
799 B
Text
Executable file

//
DefinitionBlock("", "SSDT", 2, "OCLT", "EXT4", 0)
{
External(_SB.LID, DeviceObj)
External(_SB.LID0, DeviceObj)
External(_SB.PCI0.LPCB.LID, DeviceObj)
External(_SB.PCI0.LPCB.LID0, DeviceObj)
Method (EXT4, 1, NotSerialized)
{
If (3 == Arg0)
{
If (CondRefOf (\_SB.LID))
{
Notify (\_SB.LID, 0x80)
}
If (CondRefOf (\_SB.LID0))
{
Notify (\_SB.LID0, 0x80)
}
//
If (CondRefOf (\_SB.PCI0.LPCB.LID))
{
Notify (\_SB.PCI0.LPCB.LID, 0x80)
}
If (CondRefOf (\_SB.PCI0.LPCB.LID0))
{
Notify (\_SB.PCI0.LPCB.LID0, 0x80)
}
}
}
}
//EOF