Contribute
Register

need support for fixing some errrors in dsdt

Status
Not open for further replies.
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.
whoa!! correction worked !!!:headbang:
thanks
but i must say there some wrong happening when copying
thanks fixed
 
The patches in that post are correct. The ones you are using are wrong.

no i'm not saying that your posted are wrong >>>
when copying it had missing some properties
sorry if misunderstood
 
no i'm not saying that your posted are wrong >>>
when copying it had missing some properties
sorry if misunderstood

On occasion, backslashes go missing in code blocks due to bugs in the forum software.
 
Status
Not open for further replies.
Back
Top