Contribute
Register

How to fix this 6105 error (_SCP requires 1)?

Status
Not open for further replies.
Joined
Sep 17, 2017
Messages
5
Motherboard
LG gram 15Z970
CPU
Intel Core i5 7200U
Graphics
Intel HD 620 1920x1080
Mobile Phone
  1. iOS
Hi,I have a problem with SSDT, what should i do to fix it?
0060lm7Tly1fk8949s5akj30kc0fi0y1.jpg
0060lm7Tly1fk89443u1mj30nh0r17m5.jpg

This is part of the code
Code:
Scope (\_SB)
    {
        Device (TPWR)
        {
            Name (_HID, EisaId ("INT3407"))  // _HID: Hardware ID
            Name (_UID, "TPWR")  // _UID: Unique ID
            Name (_STR, Unicode ("Platform Power"))  // _STR: Description String
            Name (PTYP, 0x11)
            Method (_STA, 0, NotSerialized)  // _STA: Status
            {
                If (LEqual (\PWRE, One))
                {
                    Return (0x0F)
                }
                Else
                {
                    Return (Zero)
                }
            }

            Method (_BST, 0, NotSerialized)  // _BST: Battery Status
            {
                If (CondRefOf (\_SB.PCI0.LPCB.H_EC.BAT1._BST))
                {
                    Return (\_SB.PCI0.LPCB.H_EC.BAT1._BST ())
                }
                Else
                {
                    Return (Package (0x04)
                    {
                        Zero,
                        Zero,
                        Zero,
                        Zero
                    })
                }
            }

            Method (_BIX, 0, NotSerialized)  // _BIX: Battery Information Extended
            {
                If (CondRefOf (\_SB.PCI0.LPCB.H_EC.BAT1._BIX))
                {
                    Return (\_SB.PCI0.LPCB.H_EC.BAT1._BIX ())
                }
                Else
                {
                    Return (Package (0x14)
                    {
                        Zero,
                        Zero,
                        Zero,
                        Zero,
                        Zero,
                        Zero,
                        Zero,
                        Zero,
                        Zero,
                        Zero,
                        Zero,
                        Zero,
                        Zero,
                        Zero,
                        Zero,
                        Zero,
                        "0",
                        "0",
                        "0",
                        "0"
                    })
                }
            }
 

Attachments

  • SSDT1.dsl
    337.2 KB · Views: 164
Hi!

I had this problem too, if you doesn't have any discrete gpu, I was told it was not necessary to patch the ssdt files..

You should use the clover hotpatch for the rename patching ;)

Good luck!
 
Last edited:
Rename fix not work for me
 
Status
Not open for further replies.
Back
Top