View Single Post
 
Old 02-02-2011, 03:08 PM
cheops2006 cheops2006 is offline
Cheetah
 
Join Date: Aug 2009
Posts: 2
Yes this works

Code:
     Device (OHC1)  // OHCI
                {
                    Name (_ADR, 0x00040000)
                    Method (_S1D, 0, NotSerialized)
                    {
                        Return (0x01)
                    }
                    Method (_S3D, 0, NotSerialized)
                    {
                        Return (0x02)
                    }
                    Name (_PRW, Package (0x02)
                    {
                        0x0D, 
                        0x03
                    })
					Method (_DSM, 4, NotSerialized)
	                {
	                    Store (Package ()
	                        {
	                            "AAPL,device-internal", 0x00,
	                            Buffer (One) {0x00}
	                        }, Local0)
	                    DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
	                    Return (Local0)
	                }
                }
Reply With Quote