Thread: IRQNoFlags ???
View Single Post
 
Old 11-20-2010, 01:53 AM
palz's Avatar
palz palz is offline
Puma
 
Join Date: Jan 2010
Posts: 28
IRQNoFlags ???

In Snow Leopard (iATKOS S3), my BIOS keeps getting reset due to a DSDT error. I opened mine with DSDTSE, and under RTC I have:

Quote:
Device (RTC0)
{
Name (_HID, EisaId ("PNP0B00"))
Name (CRS0, ResourceTemplate ()
{
IO (Decode16,
0x0070, // Range Minimum
0x0070, // Range Maximum
0x00, // Alignment
0x02, // Length
)
IRQNoFlags ()
{8}
})
Name (CRS1, ResourceTemplate ()
{
IO (Decode16,
0x0070, // Range Minimum
0x0070, // Range Maximum
0x00, // Alignment
0x02, // Length
)
})
Method (_CRS, 0, NotSerialized)
{
If (LEqual (^^HPET.NVID, 0x10DE))
{
Return (CRS1)
}

Return (CRS0)
}
}
Should I remove IRQNoFlags?? I can't seem to find the other IRQ thing.

PLEEZ help...
Reply With Quote