Hello MaLd0n,
I've followed the guide you posted and now I can change brightness with fn+f5/f6 (I was able to do that before with f14+f15). But the problem is that brightness won't change neither from syspref>slider nor from hotkeys.
I get this behaviour when I use the latest voodoops2controller ( this kext doesn't recognise my ALPS trackpad so I am using it as a mouse)
When I use VoodooPS2Controller-R6RC2.kext (trackpad recognised) when I press fn+f6 I can see brightness icon but it also lowers my volume (fn+f8)
In both cases I can't change brightness
Bellow is my original Methods for Q11 and Q12
Method (_Q11, 0, NotSerialized) // _Qxx: EC Query
{
Store (0x11, P80H)
If (LEqual (^^^GFX0.DD02._DCS (), 0x1D))
{
Return (Zero)
}
Notify (^^^GFX0.DD02, 0x87)
Store (One, ^^FJEX.BLLF)
Notify (FJEX, 0x80)
}
Method (_Q12, 0, NotSerialized) // _Qxx: EC Query
{
Store (0x12, P80H)
If (LEqual (^^^GFX0.DD02._DCS (), 0x1D))
{
Return (Zero)
}
Notify (^^^GFX0.DD02, 0x86)
Store (One, ^^FJEX.BLLF)
Notify (FJEX, 0x80)
}