View Single Post
 
Old 11-20-2009, 11:20 PM
dan10 dan10 is offline
Cheetah
 
Join Date: Nov 2009
Posts: 4
Here it's mine:

Code:
 
   Method (_L0D, 0, NotSerialized)
        {
            Store (SMI (0xC6, Zero), Local0)
            If (And (Local0, One))
            {
                Notify (\_SB.PCI0.HDEF, 0x02)
            }

            If (And (Local0, 0x02))
            {
                Notify (\_SB.PCI0.EHCI, 0x02)
            }

            If (And (Local0, 0x04))
            {
                Notify (\_SB.PCI0.EHC2, 0x02)
            }
        }
Reply With Quote