Jump to content

Need M17xR4 dsdt fixed, some parse errors


applehacker
 Share

5 posts in this topic

Recommended Posts

Locate this bad code in your DSDT:

 

Method (GOPS, 1, NotSerialized)
		{
			Store (Zero, CDSP)
			If (CondRefOf (HDSE))
			{
			 Store (HDSE)
				CDSP
			}
			Else
			{
				GETD ()
			}
			Return (CDSP)
		}
		Method (SOPS, 1, NotSerialized)
		{
			If (CondRefOf (HDSE))
			{
			 HDSE
				Arg0
			}
			Else
			{
				SETD (Arg0)
			}
			Return (Zero)
		}

 

And replace with this one:

 

Method (GOPS, 1, NotSerialized)
		{
			Store (Zero, CDSP)
			If (CondRefOf (HDSE))
			{
			   Store (HDSE, CDSP)

			}
			Else
			{
				GETD ()
			}
			Return (CDSP)
		}
		Method (SOPS, 1, NotSerialized)
		{
			If (CondRefOf (HDSE))
			{
			Store (HDSE,Arg0)
			 }
	           Else
			{
				SETD (Arg0)
			}
			Return (Zero)
		}

 

 

 

Rampage has been faster.... i´m getting old. :star_sunglasses:

Link to comment
Share on other sites

  • 1 year later...

You had many other mistakes but I was able to correct them. I also added edits that you were missing.

 

attachicon.gifDSDT.aml.zip

Hello Rampage great work.

 i did my hackintosh without helps until now ,i have a biostar z87x 3d hifi and i ve not found any help online...

I have only one error in dsdt editor compile, i attach the original dsdt,

i ve patched any remark with t_x rename patch but the rest i don't know how to do

could you help me?dsdt.aml.zip

 

best regards

giuseppe

Link to comment
Share on other sites

 Share

×
×
  • Create New...