Hello; I'm trying to fix an error when checking the dsdt of the
macbook pro below:

Intel ACPI Component Architecture
ASL Optimizing Compiler version 20051216 [Jan  9 2006]
Copyright (C) 2000 - 2005 Intel Corporation
Supports ACPI Specification Revision 3.0

No back ptr to Op: type 8
No back ptr to Op: type 8
dsdt.dsl   511:             If (And (PDC0, 0x08))
Error    1061 -   Object does not exist ^  (PDC0)

dsdt.dsl   514:                 If (And (PDC0, 0x10))
Error    1061 -       Object does not exist ^  (PDC0)

dsdt.dsl   521:             If (And (PDC1, 0x08))
Error    1065 -                         ^ Object not accessible from
this scope (PDC1)

dsdt.dsl   524:                 If (And (PDC1, 0x10))
Error    1065 -                             ^ Object not accessible
from this scope (PDC1)

ASL Input:  dsdt.dsl - 5040 lines, 171343 bytes, 1814 keywords
Compilation complete. 4 Errors, 0 Warnings, 0 Remarks, 609 Optimizations

/**************************************************
*here is the section of code that is causing the errors:
***************************************************/

 Method (PNOT, 0, Serialized)
    {
        If (MPEN)
        {
            If (And (PDC0, 0x08))      <-----------------PDC0
            {
                Notify (\_PR.CPU0, 0x80)
                If (And (PDC0, 0x10))
                {
                    Sleep (0x64)
                    Notify (\_PR.CPU0, 0x81)
                }
            }

            If (And (PDC1, 0x08))     <-----------------PDC1
            {
                Notify (\_PR.CPU1, 0x80)
                If (And (PDC1, 0x10))
                {
                    Sleep (0x64)
                    Notify (\_PR.CPU1, 0x81)
                }
            }
        }
        Else
        {
            Notify (\_PR.CPU0, 0x80)
            Sleep (0x64)
            Notify (\_PR.CPU0, 0x81)
        }
    }

Right now I'm trying to focus my attention on fixing a bug in 2.6.26-rc*
The problem I'm running into is I can't read or understand how to find
the manufacture number or id when going to:
http://acpi.sourceforge.net/dsdt/view.php / either it's not there or
hiding itself.
any advice would be appreciated.
regards;
-- 
Justin P. Mattock

_______________________________________________
Power mailing list
[email protected]
http://www.bughost.org/mailman/listinfo/power

Reply via email to