Jump to content
5 posts in this topic

Recommended Posts

Hello to all, I am hoping maybe someone can help me figure out this current issue set before me. I can't compile my DSDT with the latest DSDTSE as it tells me I have 1 error. The code I add that gives me this error is listed below, as is my DSDT. I really would like this segment of code to help detect my graphics card properly in DSDT (GTX470). My DSDT is from a GA-EP45-DQ6 and was obtained from iasl.

 

This is the code I added to give me error I also added the RTC info before graphics as my DSDT didn't contain anything for RTC (Is this a problem even though it compiles ok with it?)

 

Device (PEGP)

{

Name (_ADR, 0x00010000)

Name (_PRW, Package (0x02)

{

0x09,

0x05

})

 

As you can see if this code is taken out, it compiles fine - but I feel I need this to get my graphics/HDMI audio working via DSDT.

 

Thanks again in any help for helping me resolve this issue!!

dsdtbummer.zip

 

I will get this to you ASAP! Hope it helps..

 

 

 

Your PEGP is missing a closing bracket and you have Method DTGP twice. I did not look any further.

 

 

I did notice the method DTGP in there twice and cleaned it up - I had read it was better at the top - but who knows. As for PEGP, I tried closing brackets in any given possibility and still couldn't get it to work! Is it possible you can try this for me or at least some instruction on where to put it within this code? Thanks again for any time guys... Here is my cleaned up code..

 

Device (PEGP)

{

Name (_ADR, 0x00010000)

Name (_PRW, Package (0x02)

{

0x09,

0x05

})

bummer2.zip

It's very simple - any opening { and ( must have a closing ) and } as well.

 

Count them:

 

			 Device (PEGP)
		{ <----- this is the "opening" bracket...
			Name (_ADR, 0x00010000)
			Name (_PRW, Package (0x02)
			{
				0x09, 
				0x05
			})
		} <----- ...and this is the closing bracket you're missing

×
×
  • Create New...