Skip to content

Latest commit

 

History

History
executable file
·
26 lines (26 loc) · 493 Bytes

SSDT-PWRB.md

File metadata and controls

executable file
·
26 lines (26 loc) · 493 Bytes
//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