Contribute
Register

[HELP] ASUS ZenBook UX330UAR DSDT

Status
Not open for further replies.
@RehabMan
Current problem:
Line Code Message
10648 6126 syntax error, unexpected PARSEOP_NAMESEG
10651 6126 syntax error, unexpected PARSEOP_NAMESEG
10654 6126 syntax error, unexpected PARSEOP_NAMESEG

Seems to have something to do with _WAK? I applied the v2 patch.....

This code looks like (wrong) edits you made:
Code:
    Method (_WAK, 1, NotSerialized)  // _WAK: Wake
    {
        If (LOr(LLess(Arg0,1),LGreater(Arg0,5))) { Store(3,Arg0) }
RWFBT()
WAK (Arg0)
 
        \_SB.PCI0.NWFBT()
WAK (Arg0)
 
        \_SB.PCI0.LPCB.SWFBT()
WAK (Arg0)
 
        SBDW (Arg0)
        \_SB.PCI0.LPCB.EC0.EC0W (Arg0)
        Return (WAKP)
    }

Keep in mind ACPI names are limited to 4 characters, so RWFBT,NWFBT,SWFBT are obvious mistakes (they are 5 characters).
You should probably read the ACPI spec before attempting to program ACPI.
 
This code looks like (wrong) edits you made:
Code:
    Method (_WAK, 1, NotSerialized)  // _WAK: Wake
    {
        If (LOr(LLess(Arg0,1),LGreater(Arg0,5))) { Store(3,Arg0) }
RWFBT()
WAK (Arg0)
 
        \_SB.PCI0.NWFBT()
WAK (Arg0)
 
        \_SB.PCI0.LPCB.SWFBT()
WAK (Arg0)
 
        SBDW (Arg0)
        \_SB.PCI0.LPCB.EC0.EC0W (Arg0)
        Return (WAKP)
    }

Keep in mind ACPI names are limited to 4 characters, so RWFBT,NWFBT,SWFBT are obvious mistakes (they are 5 characters).
You should probably read the ACPI spec before attempting to program ACPI.

I didn't make these edits. I just used the patches provided to me. So how would I fix it?
 
I didn't make these edits. I just used the patches provided to me. So how would I fix it?

Obviously, the patches you used are not correct.
 
Obviously, the patches you used are not correct.
Okay. Another thing, I’m using another persons guide for a UX403 (Kaby Lake-R) And it Made use of SSDT Hotpatches, fixing both my trackpad and my backlight, is it possible to make one of these specifically for my battery and just have it booted with the untouched DSDT with like the SSDT filling in?
 
Status
Not open for further replies.
Back
Top