All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alvaro Lopes <alvieboy-JkNoWtNHh5AAvxtiuMwx3w@public.gmane.org>
To: Darren Benham <dbenham-FG1iuTdj8bisTnJN9+BGXg@public.gmane.org>
Cc: acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
Subject: Re: Thermal module errors
Date: Fri, 07 Feb 2003 19:08:21 +0000	[thread overview]
Message-ID: <3E440425.1080006@alvie.com> (raw)
In-Reply-To: <64330.64.164.111.5.1044640843.squirrel-FG1iuTdj8bisTnJN9+BGXg@public.gmane.org>

Darren Benham wrote:

>I had a feeling it was going to come to that.  I had already disassembled
>the DSDT but it doesn't mean anything to me.
>
Well, to me it means just a little bit more :)

Lets see, here's the cause of one of the errors:

dsdt-darren.dsl  5892:                 Store (C11A (0x1F, 0x00, 0x00, 
0x00), Local0)
Error    1029 -   Called method returns no value ^

OK, let's look at method C11A (in namespace _TZ_):

        Method (C11A, 4, Serialized)
        {
            \_SB.C03E.C053.C0D1.C11A (Arg0, Arg1, Arg2, Arg3)
        }

And \_SB.C03E.C053.C0D1.C11A looks like it does return a value:

                    Method (C11A, 4, NotSerialized)
                    {
                        Acquire (C10B, 0xFFFF)
                        Acquire (\_GL, 0xFFFF)
                        [snip]
                        Release (\_GL)
                        Release (C10B)
                        Return (Local7)
                    }

Ok, here's the bug. This method calls another and discards its value. 
So, it should be like this:

        Method (C11A, 4, Serialized)
        {
           Return (  \_SB.C03E.C053.C0D1.C11A (Arg0, Arg1, Arg2, Arg3) )
        }

I am not able to compile your DSDT. Can you please try to compile it 
yourself ?

ASL Input:  dsdt-darren.dsl - 6545 lines, 222603 bytes, 3917 keywords
Compilation complete. 39 Errors, 2 Warnings, 0 Remarks, 1109 Optimizations

Álvaro

>Alvaro Lopes said:
>  
>
>>There's a problem with your DSDT. Can you sent it to this list ? I
>>believe there's already a DSTD patch for your compaq or a similar one.
>>
>>Install the Intel iasl package (you can find it at
>>http://www.intel.com/technology/iapc/acpi/downloads.htm )  and do a
>>'iasl -d /proc/acpi/dsdt'. Send here the results, please.
>>
>>Álvaro
>>
>>--
>>
>>Álvaro Lopes
>>---------------------
>>A .sig is just a .sig
>>    
>>
>
>
>  
>

-- 

Álvaro Lopes 
---------------------
A .sig is just a .sig




-------------------------------------------------------
This SF.NET email is sponsored by:
SourceForge Enterprise Edition + IBM + LinuxWorld = Something 2 See!
http://www.vasoftware.com

  parent reply	other threads:[~2003-02-07 19:08 UTC|newest]

Thread overview: 5+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2003-02-07  7:29 Thermal module errors Darren Benham
     [not found] ` <32774.192.168.10.204.1044602945.squirrel-FG1iuTdj8bisTnJN9+BGXg@public.gmane.org>
2003-02-07 11:29   ` Alvaro Lopes
     [not found]     ` <64330.64.164.111.5.1044640843.squirrel@benham.net>
     [not found]       ` <64330.64.164.111.5.1044640843.squirrel-FG1iuTdj8bisTnJN9+BGXg@public.gmane.org>
2003-02-07 19:08         ` Alvaro Lopes [this message]
     [not found]           ` <3E440425.1080006-JkNoWtNHh5AAvxtiuMwx3w@public.gmane.org>
2003-02-07 21:36             ` Darren Benham
2003-02-07 12:12   ` Sérgio Monteiro Basto

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3E440425.1080006@alvie.com \
    --to=alvieboy-jknowtnhh5aavxtiumwx3w@public.gmane.org \
    --cc=acpi-devel-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org \
    --cc=dbenham-FG1iuTdj8bisTnJN9+BGXg@public.gmane.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.