mirror of
https://github.com/tylernguyen/x1c6-hackintosh.git
synced 2025-02-05 09:33:13 -06:00
23 lines
476 B
Text
Executable file
23 lines
476 B
Text
Executable file
//Add MCHC
|
|
DefinitionBlock ("", "SSDT", 2, "ACDT", "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)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|