Contribute
Register

need support for fixing some errrors in dsdt

Status
Not open for further replies.
Joined
Nov 11, 2015
Messages
243
Motherboard
GIGABYTE Z390 DESIGNARE.
CPU
i7 7700K
Graphics
RTX 3080 TI
Mac
  1. iMac
  2. MacBook
  3. MacBook Pro
  4. Mac mini
Mobile Phone
  1. Android
  2. iOS
hi there i'm getting this error in _L6D can anyone help !!
 

Attachments

  • DSDT.dsl.zip
    41.7 KB · Views: 68
  • Screen Shot 2015-11-21 at 10.56.33 PM.png
    Screen Shot 2015-11-21 at 10.56.33 PM.png
    37.1 KB · Views: 95
Clearly an incorrect edit you made to the file.

ya before applying
Code:
# rename EHC1 to EH01
into device label EHC1 set_label begin EH01 end;
into_all all code_regex EHC1. replaceall_matched begin EH01. end;
into_all all code_regex .EHC1, replaceall_matched begin .EH01, end;

# rename EHC2 to EH02
into device label EHC2 set_label begin EH02 end;
into_all all code_regex EHC2. replaceall_matched begin EH02. end;
into_all all code_regex .EHC2, replaceall_matched begin .EH02, end;
i have got only these errors
after apply above patch ...... errors increased
 

Attachments

  • DSDT.dsl.zip
    41.9 KB · Views: 73
  • Screen Shot 2015-11-21 at 11.22.35 PM.png
    Screen Shot 2015-11-21 at 11.22.35 PM.png
    35.3 KB · Views: 93
ya before applying
Code:
# rename EHC1 to EH01
into device label EHC1 set_label begin EH01 end;
into_all all code_regex EHC1. replaceall_matched begin EH01. end;
into_all all code_regex .EHC1, replaceall_matched begin .EH01, end;

# rename EHC2 to EH02
into device label EHC2 set_label begin EH02 end;
into_all all code_regex EHC2. replaceall_matched begin EH02. end;
into_all all code_regex .EHC2, replaceall_matched begin .EH02, end;
i have got only these errors
after apply above patch ...... errors increased

The patch you show has no relation to the error you have. Error existed prior to patch.

Apply "Fix ADBG Error".

The patches you have for EHC rename are also invalid:
Code:
# rename EHC1 to EH01
into device label EHC1 set_label begin EH01 end;
into_all all code_regex EHC1. replaceall_matched begin EH01. end;
into_all all code_regex .EHC1, replaceall_matched begin .EH01, end;

# rename EHC2 to EH02
into device label EHC2 set_label begin EH02 end;
into_all all code_regex EHC2. replaceall_matched begin EH02. end;
into_all all code_regex .EHC2, replaceall_matched begin .EH02, end;

Should be:
Code:
# rename EHC1 to EH01
into device label EHC1 set_label begin EH01 end;
into_all all code_regex EHC1\. replaceall_matched begin EH01. end;
into_all all code_regex \.EHC1, replaceall_matched begin .EH01, end;

# rename EHC2 to EH02
into device label EHC2 set_label begin EH02 end;
into_all all code_regex EHC2\. replaceall_matched begin EH02. end;
into_all all code_regex \.EHC2, replaceall_matched begin .EH02, end;

The '.' character in a regex matches any character... so clearly not what you intended.
 
The patch you show has no relation to the error you have. Error existed prior to patch.

Apply "Fix ADBG Error".

ya done that error gone and those (still didn't apply rename ECH1 to ECH01 ....patch )
 

Attachments

  • Screen Shot 2015-11-21 at 11.34.38 PM.png
    Screen Shot 2015-11-21 at 11.34.38 PM.png
    52.3 KB · Views: 107
  • Screen Shot 2015-11-21 at 11.36.48 PM.png
    Screen Shot 2015-11-21 at 11.36.48 PM.png
    50.3 KB · Views: 95
ya done that error gone and those (still didn't apply rename ECH1 to ECH01 ....patch )

Normal. Remove the lines causing the three errors.
 
Normal. Remove the lines causing the three errors.

good
just apply the code
Code:
# rename EHC1 to EH01
into device label EHC1 set_label begin EH01 end;
into_all all code_regex EHC1. replaceall_matched begin EH01. end;
into_all all code_regex .EHC1, replaceall_matched begin .EH01, end;

# rename EHC2 to EH02
into device label EHC2 set_label begin EH02 end;
into_all all code_regex EHC2. replaceall_matched begin EH02. end;
into_all all code_regex .EHC2, replaceall_matched begin .EH02, end;
look
 

Attachments

  • have errors.zip
    41.9 KB · Views: 72
  • Screen Shot 2015-11-21 at 11.45.55 PM.png
    Screen Shot 2015-11-21 at 11.45.55 PM.png
    54.1 KB · Views: 104
good
just apply the code
Code:
# rename EHC1 to EH01
into device label EHC1 set_label begin EH01 end;
into_all all code_regex EHC1. replaceall_matched begin EH01. end;
into_all all code_regex .EHC1, replaceall_matched begin .EH01, end;

# rename EHC2 to EH02
into device label EHC2 set_label begin EH02 end;
into_all all code_regex EHC2. replaceall_matched begin EH02. end;
into_all all code_regex .EHC2, replaceall_matched begin .EH02, end;
look

Read post #4.
 
Status
Not open for further replies.
Back
Top