[ltp] corrected dsdt for the 3.05 bios

Niel Lambrechts linux-thinkpad@linux-thinkpad.org
Thu, 01 Jul 2004 00:43:02 +0200


On Wed, 2004-06-30 at 16:59, Alexander Gran wrote:
> I think that should be save but I don't really understnad dsdts, too. (And the 
> specification is several hunderd pages...)
> perhaps ask the  acpi gods?
> 
> regards
> Alex
> 
> Am Mittwoch, 30. Juni 2004 16:28 schrieb R. Adelsberger:
> > i work with a t41p
> > i had some errors with the original dsdt during bootup, so i corrected
> > it. nevertheless, two warnings remain, e.g., that "not all paths return
> > a value {SOMEVALUE}".  as i compared it to a t40p dsdt i saw that there
> > the mentioned "paths" return the value (0x00). is it save to do the same?
> >
> > thank you.
> >
> > rolf.

You could easily fix this by finding the offending function/Method and
adding a Return to the end.

example:
348:    Method (\_WAK, 1, NotSerialized)
349-    {
350-455 ...
456-    Return(Package(0x02){0x00, 0x00})
457-    }

-Niel