PDA

View Full Version : IRQNoFlags ???


palz
11-20-2010, 01:53 AM
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:

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...