simeonoff Posted August 8, 2011 Share Posted August 8, 2011 Hello there, Change this in your DSDT to get rid of the Only single ram bank error message: Change this in your RTC: Device (RTC) { Name (_HID, EisaId ("PNP0B00")) Method (_STA, 0, NotSerialized) { Return (0x0F) } Name (_CRS, ResourceTemplate () { IO (Decode16, 0x0070, // Range Minimum 0x0070, // Range Maximum 0x01, // Alignment 0x02, // Length ) IRQNoFlags () {8} }) } To this: Device (RTC) { Name (_HID, EisaId ("PNP0B00")) Method (_STA, 0, NotSerialized) { Return (0x0F) } Name (_CRS, ResourceTemplate () { IO (Decode16, 0x0070, // Range Minimum 0x0070, // Range Maximum 0x01, // Alignment 0x08, // Length ) IRQNoFlags () {8} }) } And you should be all set. Link to comment Share on other sites More sharing options...
robi62 Posted August 8, 2011 Author Share Posted August 8, 2011 Hello there, Change this in your DSDT to get rid of the Only single ram bank error message: Change this in your RTC: Device (RTC) { Name (_HID, EisaId ("PNP0B00")) Method (_STA, 0, NotSerialized) { Return (0x0F) } Name (_CRS, ResourceTemplate () { IO (Decode16, 0x0070, // Range Minimum 0x0070, // Range Maximum 0x01, // Alignment 0x02, // Length ) IRQNoFlags () {8} }) } To this: Device (RTC) { Name (_HID, EisaId ("PNP0B00")) Method (_STA, 0, NotSerialized) { Return (0x0F) } Name (_CRS, ResourceTemplate () { IO (Decode16, 0x0070, // Range Minimum 0x0070, // Range Maximum 0x01, // Alignment 0x08, // Length ) IRQNoFlags () {8} }) } And you should be all set. Thanks it worked Link to comment Share on other sites More sharing options...
robi62 Posted August 9, 2011 Author Share Posted August 9, 2011 Hi SIMEONOFF as much as I liked getting rid of single bank messy the fix gave me problemsi kept getting this error Sleep failure code 0xc01f0000 0x3ca8f880 then after each reboot cmos error so back like b4 I think fix was only cosmetic[ Link to comment Share on other sites More sharing options...
simeonoff Posted August 9, 2011 Share Posted August 9, 2011 Yeah, it's only a cosmetic thing, you can try different length like 0x04. Link to comment Share on other sites More sharing options...
robi62 Posted August 9, 2011 Author Share Posted August 9, 2011 Yeah, it's only a cosmetic thing, you can try different length like 0x04. Still gives me the error thanks anyway Link to comment Share on other sites More sharing options...
Recommended Posts