Contribute
Register

[solved] Dell Inspiron 5999 DSDT SSDT errors

Status
Not open for further replies.
do everything fixing zero error but steel now have this errors:
14340 6126 syntax error, unexpected PARSEOP_NAMESEG, exepting '('
14376 6126 syntax error, unexpected PARSEOP_NAMESEG, exepting '('
14489 6126 syntax error, unexpected PARSEOP_STORE
14491 6126 syntax error, unexpected PARSEOP_STORE
14500 6126 syntax error, unexpected PARSEOP_RETURN, expecting $end and premature end-of-file
 
do everything fixing zero error but steel now have this errors:
14340 6126 syntax error, unexpected PARSEOP_NAMESEG, exepting '('
14376 6126 syntax error, unexpected PARSEOP_NAMESEG, exepting '('
14489 6126 syntax error, unexpected PARSEOP_STORE
14491 6126 syntax error, unexpected PARSEOP_STORE
14500 6126 syntax error, unexpected PARSEOP_RETURN, expecting $end and premature end-of-file

You need to upload the file you're trying to compile.
 
that's the files trying to compil with error
 

Attachments

  • DSDT+SSDT FILES ERROR.zip
    103.4 KB · Views: 58
that's the files trying to compil with error

SSDT-1.dsl: No errors after applying "Remove _DSM methods"
SSDT-7x.dsl: It is a dynamic SSDT... as per guide, will not be in ACPI/patched, therefore no reason to fix it.
SSDT-15.dsl: No error after removing ATPX method as per post #6 (it was called SSDT-8 in those set of files)
DSDT.dsl: No errors after applying the edits and patches as per post #6
 
rehabman,
thank you for your patience
i just downloaded a new version of macial and fix all problem in my SSDT files and a part of DSDT
but now i have only one error that i can't fix why please
in attached the DSDT with the error:
9333, 6126, syntax error, unexpected PARSEOP_SCOPE, expecting $end and premature End-Of-File
 

Attachments

  • DSDT.dsl.zip
    61.2 KB · Views: 66
Last edited:
rehabman,
thank you for your patience
i just downloaded a new version of macial and fix all problem in my SSDT files and a part of DSDT
but now i have only one error that i can't fix why please
in attached the DSDT with the error:
9333, 6126, syntax error, unexpected PARSEOP_SCOPE, expecting $end and premature End-Of-File

You made a mistake.

This code:
Code:
                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)
                            }
                }

Should be:
Code:
                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)
                            }

Hint: You mistakenly added an extra close brace and now they are unbalanced.
 
thank's rehabman,
my DSDT probleme solved
you are the best like every time :headbang::clap:
 
Last edited:
Status
Not open for further replies.
Back
Top