View Single Post
 
Old 12-18-2009, 09:02 AM
hibert hibert is offline
Cheetah
 
Join Date: Dec 2009
Posts: 2
thanks sk1nhd33t for the help .
i create a new dsdt.dsl to make it right. (with DSDT Patcher)
in the file there is still no entry like

Code:
    Device (AZAL)
            {
                Name (_ADR, 0x001B0000)
                Method (_PRW, 0, NotSerialized)
                {
                    Return (Package (0x02)
                    {
                        0x05, 
                        0x05
                    })
                }
            }
i found the same entry like in the .txt

Code:
    Device (HDEF)
            {
                Name (_ADR, 0x001B0000)
                Method (_PRW, 0, NotSerialized)
                {
                    Return (Package (0x02)
                    {
                        0x05, 
                        0x05
                    })
                }

                Method (_DSM, 4, NotSerialized)
                {
                    Store (Package (0x0A)
                        {
                            "built-in", 
                            Buffer (One)
                            {
                                0x00
                            }, 

                            "codec-id", 
                            Buffer (0x04)
                            {
                                0x83, 0x08, 0xEC, 0x10
                            }, 

                            "layout-id", 
                            Buffer (0x04)
                            {
                                0x73, 0x03, 0x00, 0x00
                            }, 

                            "device-type", 
                            Buffer (0x10)
                            {
                                "Realtek ALC883"
                            }, 

                            "PinConfigurations", 
                            Buffer (One)
                            {
                                0x00
                            }
                        }, Local0)
                    DTGP (Arg0, Arg1, Arg2, Arg3, RefOf (Local0))
                    Return (Local0)
                }
            }
but this is the part i have to replace ???
looks like the replacing part is in the new dsdt.dsl before i edit it ???
i have "LEGACYALC883.kext" in my extras/extensions folder.
any idea ?

Last edited by hibert; 12-18-2009 at 09:05 AM.
Reply With Quote