public inbox for linux-acpi@vger.kernel.org
 help / color / mirror / Atom feed
* How can I solve these DSL warnings?
@ 2007-05-09  6:56 Frittella Laurento
  2007-05-09  7:04 ` Alexey Starikovskiy
  0 siblings, 1 reply; 3+ messages in thread
From: Frittella Laurento @ 2007-05-09  6:56 UTC (permalink / raw)
  To: linux-acpi

Hi all,
I'm trying to fix these warnings that appears during dsl compile:

  dsdt.dsl  2341:                 Method (_S0D, 0, NotSerialized)
  Warning  1097 -      Unknown reserved name ^  (_S0D)

Code (part of interest):
  Method (_S0D, 0, NotSerialized)
  {
      Store (SMI (0x85, 0x00), Local0)
      And (Local0, 0x01, Local0)
      If (LEqual (Local0, 0x00))
      {
        Return (0x03)
      }
      Else
      {
        Return (0x00)
      }
  }


The other kind of warning is:

  dsdt.dsl  3040:                         And (Local0, 0x0F)
  Warning  1104 -                                   ^ Result is not
used, operator has no effect

Code (part of interest):
  If (LLess (Local0, 0x80))
  {
    And (Local0, 0x0F)
    Store (0x01, Local1)
    ShiftLeft (Local1, Local0, Local1)
    Store (Local1, IRA)
  }


Another one:
  dsdt.dsl  3818:                     Return (Package (0x00) {})
  Remark   5070 -    Effective AML package length is zero ^

  Method (_DOD, 0, NotSerialized)
  {
     Return (Package (0x00) {})
  }

The last ;)
  dsdt.dsl  4044:                             Wait (EJTD, 0xA000)
  Warning  1103 -         Possible operator timeout is ignored ^

  Method (_EJ0, 1, NotSerialized)
  {
    Store (SMI (0x87, 0x00), MIS7)
    If (MIS7)
    {
      SMI (0xA6, 0x02)
      SMI (0x49, 0x01)
      Wait (EJTD, 0xA000)
      SMI (0x49, 0x00)
    }

    Return (0x00)
  }


I searched for them on the acpi website but I haven't find these warning
codes.

Regards,
Laurento

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: How can I solve these DSL warnings?
  2007-05-09  6:56 How can I solve these DSL warnings? Frittella Laurento
@ 2007-05-09  7:04 ` Alexey Starikovskiy
  2007-05-09  7:22   ` Frittella Laurento
  0 siblings, 1 reply; 3+ messages in thread
From: Alexey Starikovskiy @ 2007-05-09  7:04 UTC (permalink / raw)
  To: Frittella Laurento; +Cc: linux-acpi

On 5/9/07, Frittella Laurento <laurento.frittella@gmail.com> wrote:
> Hi all,
> I'm trying to fix these warnings that appears during dsl compile:
>
>   dsdt.dsl  2341:                 Method (_S0D, 0, NotSerialized)
>   Warning  1097 -      Unknown reserved name ^  (_S0D)
Remove underscore from name ('_S0D'->'S0D') or just ignore...
>
> Code (part of interest):
>   Method (_S0D, 0, NotSerialized)
>   {
>       Store (SMI (0x85, 0x00), Local0)
>       And (Local0, 0x01, Local0)
>       If (LEqual (Local0, 0x00))
>       {
>         Return (0x03)
>       }
>       Else
>       {
>         Return (0x00)
>       }
>   }
>
>
> The other kind of warning is:
>
>   dsdt.dsl  3040:                         And (Local0, 0x0F)
Change to And(Local0, 0x0F, Local0). This form will store result of
operator back to Local0, probable intention of the statement...
>   Warning  1104 -                                   ^ Result is not
> used, operator has no effect
>
> Code (part of interest):
>   If (LLess (Local0, 0x80))
>   {
>     And (Local0, 0x0F)
>     Store (0x01, Local1)
>     ShiftLeft (Local1, Local0, Local1)
>     Store (Local1, IRA)
>   }
>
>
> Another one:
>   dsdt.dsl  3818:                     Return (Package (0x00) {})
Ignore.
>   Remark   5070 -    Effective AML package length is zero ^
>
>   Method (_DOD, 0, NotSerialized)
>   {
>      Return (Package (0x00) {})
>   }
>
> The last ;)
>   dsdt.dsl  4044:                             Wait (EJTD, 0xA000)
Ignore, or change to 0xFFFF.
>   Warning  1103 -         Possible operator timeout is ignored ^
>
>   Method (_EJ0, 1, NotSerialized)
>   {
>     Store (SMI (0x87, 0x00), MIS7)
>     If (MIS7)
>     {
>       SMI (0xA6, 0x02)
>       SMI (0x49, 0x01)
>       Wait (EJTD, 0xA000)
>       SMI (0x49, 0x00)
>     }
>
>     Return (0x00)
>   }
>
>
> I searched for them on the acpi website but I haven't find these warning
> codes.
>
> Regards,
> Laurento
> -
> To unsubscribe from this list: send the line "unsubscribe linux-acpi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: How can I solve these DSL warnings?
  2007-05-09  7:04 ` Alexey Starikovskiy
@ 2007-05-09  7:22   ` Frittella Laurento
  0 siblings, 0 replies; 3+ messages in thread
From: Frittella Laurento @ 2007-05-09  7:22 UTC (permalink / raw)
  To: Alexey Starikovskiy; +Cc: linux-acpi

Many thanks for your help!! :)

I fixed the warnings, if all works good I'll post the fixed dsdt in the
proper acpi website section. I added an useful patch (made my Daniel
Drake, a gentoo dev) to fix the annoying LID problem that affects a lot
of Dell notebook models: the lcd monitor doesn't come up when the lid is
reopened.

Cheers,
Laurento

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2007-05-09  7:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-09  6:56 How can I solve these DSL warnings? Frittella Laurento
2007-05-09  7:04 ` Alexey Starikovskiy
2007-05-09  7:22   ` Frittella Laurento

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox