Jump to content

Please help me install sierra on m4700


Morningstar

Recommended Posts

Hi Friends, i try install again ,but i can't fix dsdt , can u help fix ?
or give me how fix
this it my error dsdt 
 
 
 
2460, 6126, syntax error, unexpected PARSEOP_IF, expecting ',' or ')'
2464, 6126, syntax error, unexpected ')'
2470, 6126, syntax error, unexpected PARSEOP_STORE
2476, 6126, syntax error, unexpected PARSEOP_SHIFTLEFT
2481, 6126, syntax error, unexpected PARSEOP_STORE
2500, 6126, syntax error, unexpected PARSEOP_ELSE, expecting $end and premature End-Of-File

Link to comment
Share on other sites

  • Moderators

Just a compiler error.

Change this 

               If (LEqual (PM6H, One))                
               {
                    CreateBitField (BUF0, \_SB.PCI0._Y0C._RW, ECRW)  // _RW_: Read-Write Status
                    Store (Zero, ECRW (If (PM0H)
                            {
                                CreateDWordField (BUF0, \_SB.PCI0._Y0D._LEN, F0LN)  // _LEN: Length
                                Store (Zero, F0LN)
                            }))
                }

to this, should fix it and only error left is pnp0c14 which is easily fix. Rename "*pnp0c14" to "PNP0C14"

                If (LEqual (PM6H, One))                 
                {
                    CreateBitField (BUF0, \_SB.PCI0._Y0C._RW, ECRW)  // _RW_: Read-Write Status
                    Store (Zero, ECRW)
                }
                If (PM0H)
                {
                    CreateDWordField (BUF0, \_SB.PCI0._Y0D._LEN, F0LN)  // _LEN: Length
                    Store (Zero, F0LN)    
                }
  • Like 2
Link to comment
Share on other sites

×
×
  • Create New...