Fix keyboard backlight not auto wake when wake on LID. Must apply this patch first https://osxlatitude.com/index.php?/topic/1968-fn-hotkey-driver-for-asus-notebooks/?p=23959
Add to _LID Method:
If (LEqual (Local0, One))
{
^^ATKD.SKBL (0x03)
}
Like this:
Method (_LID, 0, NotSerialized) // _LID: Lid Status
{
Store (One, Local0)
Store (^^PCI0.LPCB.EC0.RPIN (0x46), Local0)
If (LEqual (Local0, Ones))
{
Store (One, Local0)
}
If (And (VGAF, One))
{
Store (One, ^^PCI0.IGPU.CLID)
}
If (LEqual (Local0, One))
{
^^ATKD.SKBL (0x03)
}
Return (Local0)
}