Skip to content

Latest commit

 

History

History
executable file
·
26 lines (25 loc) · 496 Bytes

SSDT-PPMC.md

File metadata and controls

executable file
·
26 lines (25 loc) · 496 Bytes
//Add PPMC
DefinitionBlock ("", "SSDT", 2, "OCLT", "PPMC", 0)
{
    External (_SB.PCI0, DeviceObj)
    Scope (_SB.PCI0)
    {
        Device (PPMC)
        {
            Name (_ADR, 0x001F0002)
            Method (_STA, 0, NotSerialized)
            {
                If (_OSI ("Darwin"))
                {
                    Return (0x0F)
                }
                Else
                {
                    Return (Zero)
                }
            }
        }
    }
}