Files
Mykola Grymalyuk f5d07651c6 Fix OSI for SSDT-UNC
2020-10-21 18:41:07 -06:00

22 lines
462 B
Plaintext

/*
* Ensures unsed uncore bridges are disabled, otherwise X79 and X99
* will kernel panic in Big Sur with IOPCIFamily.
* SSDT Taken from OpenCorePkg repo
*/
DefinitionBlock ("", "SSDT", 2, "DRTNIA", "UNC", 0x00000000)
{
External (_SB.UNC0, DeviceObj)
External (PRBM, IntObj)
Scope (_SB.UNC0)
{
Method (_INI, 0, NotSerialized)
{
If (_OSI ("Darwin")) {
PRBM = 0
}
}
}
}