//Add PWRB
DefinitionBlock("", "SSDT", 2, "OCLT", "PNP0C0C", 0)
{
//search PNP0C0C
Scope (\_SB)
{
Device (PWRB)
{
Name (_HID, EisaId ("PNP0C0C"))
Method (_STA, 0, NotSerialized)
{
If (_OSI ("Darwin"))
{
Return (0x0F)
}
Else
{
Return (Zero)
}
}
}
}
}
//EOF