http://bugzilla.kernel.org/show_bug.cgi?id=10970





------- Comment #10 from [EMAIL PROTECTED]  2008-07-07 19:30 -------
    Scope (\_PR)
    {
        Processor (\_PR.C000, 0x00, 0x00004010, 0x06) {}
        Processor (\_PR.C001, 0x01, 0x00004010, 0x06) {}
        Processor (\_PR.C002, 0x02, 0x00004010, 0x06) {}
        Processor (\_PR.C003, 0x03, 0x00004010, 0x06) {}
    }
>From this piece of AML code, we can see that four processors can be supported,
C000, C001, C002 and C003.

Name (_PSL, Package (0x01)
{
   \_PR.CPU0
})
_PSL method returns the device that can be used for passive cooling in this
thermal zone.
Unfortunately, the bogus AML code returns a non-existed device, \_PR.CPU0.
Just a one line change in AML code can fix this problem.

Name (_PSL, Package (0x01)
{
-   \_PR.CPU0
+   \_PR.C000
})
You can fix it by overriding the DSDT.
How to? Please have a look at
http://www.lesswatts.org/projects/acpi/overridingDSDT.php


-- 
Configure bugmail: http://bugzilla.kernel.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
acpi-bugzilla mailing list
acpi-bugzilla@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla

Reply via email to