Hi!
Thanks again for your help!!!!
I have been looking at the patches you have applied and read around to understand and improve my novice DSDT editing skills
I have a four questions on the edits you have applied:
diff 1:
original
Name (APCB, 0xFEC00000)
your edit
Name (APCB, 0x0000000FEC000000)
question: Is this valid?
diff 2:
original
// all instances of this
Return (Buffer (0x10)
{
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00
})
your edit
// turn to this
Return (Buffer (0x10)
{
})
question: Why is this edit? I have noticed a lot of different values inside the Buffer.
diff 3:
original
Name (PML1, 0x00000846)
Name (PML2, 0x00000846)
Name (PML3, 0x00000846)
Name (PML4, 0x00000846)
Name (PML5, 0x00000846)
Name (PML6, 0x00000846)
Name (PML7, 0x00000846)
Name (PML8, 0x00000846)
Name (PNL1, 0x00000846)
Name (PNL2, 0x00000846)
Name (PNL3, 0x00000846)
Name (PNL4, 0x00000846)
Name (PNL5, 0x00000846)
Name (PNL6, 0x00000846)
Name (PNL7, 0x00000846)
Name (PNL8, 0x00000846)
your edit
Name (PML1, 0x0846)
Name (PML2, 0x0846)
Name (PML3, 0x0846)
Name (PML4, 0x0846)
Name (PML5, 0x0846)
Name (PML6, 0x0846)
Name (PML7, 0x0846)
Name (PML8, 0x0846)
Name (PNL1, 0x0846)
Name (PNL2, 0x0846)
Name (PNL3, 0x0846)
Name (PNL4, 0x0846)
Name (PNL5, 0x0846)
Name (PNL6, 0x0846)
Name (PNL7, 0x0846)
Name (PNL8, 0x0846)
question: It looks the same to me. Do you have to change it?
diff 4:
original
// Method (_PS3, 0, Serialized)
Method (_PS0, 0, Serialized)
{
If (LEqual (DVID, 0xFFFF))
{
Return (Zero)
}
Store (MEMB, Local2)
Store (PDBM, Local1)
And (PDBM, 0xFFFFFFFFFFFFFFF9, PDBM)
Store (D0D3, Local3)
Store (Zero, D0D3)
Store (SRMB, MEMB)
your edit
// Method (_PS3, 0, Serialized)
Method (_PS0, 0, Serialized)
{
If (LEqual (DVID, 0xFFFF)) {}
Store (MEMB, Local2)
Store (PDBM, Local1)
And (PDBM, 0xFFFFFFFFFFFFFFF9, PDBM)
Store (D0D3, Local3)
Store (Zero, D0D3)
Store (SRMB, MEMB)
question: By removing the 'Return (Zero)' you mainly cancel out the if. Is it what you indended?
And one last thing. The motherboard has 'Realtek ALC 221'. Is there any native solution other than Voodoo for audio?
Thanks again for you great great help and happy new year!!!!!