2019-12-19 21:33:12 -06:00
|
|
|
//
|
2020-06-03 08:32:15 -05:00
|
|
|
DefinitionBlock("", "SSDT", 2, "tyler", "EXT4", 0)
|
2019-12-19 21:33:12 -06:00
|
|
|
{
|
|
|
|
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
|