View Single Post
 
Old 09-11-2009, 12:17 AM
chris7519 chris7519 is offline
Cheetah
 
Join Date: May 2009
Posts: 10
Snow, I'm still getting the hang of the whole DSDT thing, but I would just add the "Method (_DSM, 4, NotSerialized)" under your "Device (PEX5)". I don't have a need for the PlatformUUID (Don't get Error 35, ethernet works Out of the box), so I wouldn't be able to give this a try myself. However, I did have an issue with sound and had to create "Device (HDEF)" as I didn't have "Device (AZAL)" in my DSDT and it only contains that method:

Code:
Device (HDEF)
            {
                Name (_ADR, 0x001B0000)
                Method (_DSM, 4, NotSerialized)
                {
                    Store (Package (0x04)
                        {
                            "layout-id", 
                            Buffer (0x04)
                            {
                                0x0C, 0x00, 0x00, 0x00
                            }, 

                            "PinConfigurations", 
                            Buffer (Zero) {}
                        }, Local0)
                    DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
                    Return (Local0)
                }
            }
A BIG thanks to kDawg & mormegil for the help!!!!
Reply With Quote