Skip to content

Latest commit

 

History

History
executable file
·
25 lines (25 loc) · 489 Bytes

SSDT-MCHC.md

File metadata and controls

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