Contribute
Register

HDMI Audio and SSDT Patching Problem

Status
Not open for further replies.
Joined
Jan 18, 2011
Messages
47
Motherboard
Acer Aspire E 14 E5-471G-68K6 + clover
CPU
Intel Core i5-4210U
Graphics
HD4400+840M 2GB + 1366x768x32
Mac
  1. 0
Classic Mac
  1. 0
Mobile Phone
  1. iOS
Hi everyone, I want to make my laptop can use HDMI Audio.
I found a way can patch is patched by SSDT, but there is a problem I can't solve in SSDT-3.
22851396197_631e7450dc_b.jpg

Code:
  If (\_OSI ("Windows 2013"))  <--error line
    {
        Scope (\_SB.PCI0.RP05)
        {
           ...
Can anyone help me to fix the problem? Thank you
 

Attachments

  • extract.zip
    678.7 KB · Views: 87
Hi everyone, I want to make my laptop can use HDMI Audio.
I found a way can patch is patched by SSDT, but there is a problem I can't solve in SSDT-3.
22851396197_631e7450dc_b.jpg

Code:
  If (\_OSI ("Windows 2013"))  <--error line
    {
        Scope (\_SB.PCI0.RP05)
        {
           ...
Can anyone help me to fix the problem? Thank you

Post native ACPI files, extracted with F4 at Clover screen.
 
It is in EFI\CLOVER\ACPI\origin??

After disassembling your files, properly and making the typical fixes, I see no such issue.

Correct disassembly:
Code:
cd ~/Downloads/origin
iasl -da -dl DSDT.aml SSDT*.aml
 
After disassembling your files, properly and making the typical fixes, I see no such issue.

Correct disassembly:
Code:
cd ~/Downloads/origin
iasl -da -dl DSDT.aml SSDT*.aml

The error in #1 seems still here after using the command
Maybe I made a wrong concept for the command
 

Attachments

  • origin.zip
    174 KB · Views: 67
The error in #1 seems still here after using the command
Maybe I made a wrong concept for the command

Which file? Your post #1 shows SSDT-3. There is no file named SSDT-3.
 
Now the error in DSDT-6.dl of the origin file

Easy fixes...
- remove line 524
- relocate lines 42 and 43 to after the other External declarations (around line 106 [after cut])

Result: No errors.
 
Easy fixes...
- remove line 524
- relocate lines 42 and 43 to after the other External declarations (around line 106 [after cut])

Result: No errors.

The first error I fixed immediately, but I'm not really know the solution of patching the second error...
Sorry for my bad english.
 

Attachments

  • SSDT-6.dsl
    76 KB · Views: 120
The first error I fixed immediately, but I'm not really know the solution of patching the second error...
Sorry for my bad english.

You made an incorrect edit. You removed a closing brace in the _BCM method. Start over. Follow my instructions carefully. No more, no less.
 
Status
Not open for further replies.
Back
Top