mirror of
https://github.com/tylernguyen/x1c6-hackintosh.git
synced 2025-02-05 09:33:13 -06:00
27 lines
585 B
Text
27 lines
585 B
Text
|
//
|
||
|
DefinitionBlock("", "SSDT", 2, "hack", "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
|