forked from acidanthera/OpenCorePkg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSSDT-PNLFCFL.dsl
31 lines (28 loc) · 887 Bytes
/
SSDT-PNLFCFL.dsl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// WARN: This file is deprecated and left for compatibility reasons.
// Please switch to SSDT-PNLF table if possible.
//
// Adding PNLF device for WhateverGreen.kext and others.
// This one is specific to CFL+
// Rename GFX0 to anything else if your IGPU name is different.
DefinitionBlock ("", "SSDT", 2, "ACDT", "PNLFCFL", 0x00000000)
{
External (_SB_.PCI0.GFX0, DeviceObj)
Device (_SB.PCI0.GFX0.PNLF)
{
// Name (_ADR, Zero) // _ADR: Address
Name (_HID, EisaId ("APP0002")) // _HID: Hardware ID
Name (_CID, "backlight") // _CID: Compatible ID
Name (_UID, 0x13) // _UID: Unique ID
Method (_STA, 0, NotSerialized) // _STA: Status
{
If (_OSI ("Darwin"))
{
Return (0x0B)
}
Else
{
Return (Zero)
}
}
}
}