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

27 lines
585 B
Text
Raw Normal View History

//
DefinitionBlock("", "SSDT", 2, "OCLT", "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