1
0
Fork 0
mirror of https://github.com/tylernguyen/x1c6-hackintosh.git synced 2025-02-05 09:33:13 -06:00
x1c6-hackintosh/patches/SSDT-PNLF-SKL_KBL.dsl
2020-06-03 08:32:15 -05:00

27 lines
No EOL
586 B
Text

//
DefinitionBlock("", "SSDT", 2, "tyler", "PNLF", 0)
{
Scope(_SB)
{
Device(PNLF)
{
Name(_ADR, Zero)
Name(_HID, EisaId ("APP0002"))
Name(_CID, "backlight")
//Skylake/KabyLake/KabyLake-R
Name(_UID, 16)
Method (_STA, 0, NotSerialized)
{
If (_OSI ("Darwin"))
{
Return (0x0B)
}
Else
{
Return (Zero)
}
}
}
}
}
//EOF