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


[EMAIL PROTECTED] changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REOPENED                    |REJECTED
         Resolution|                            |WILL_NOT_FIX




------- Comment #11 from [EMAIL PROTECTED]  2007-12-26 01:50 -------
This is the description of AC adapter in your DSDT. You may notice that it
depends on Local0 being always equal to One (1).
Battery is not mentioned in your DSDT at all.
In order to be SBS compliant, at least EC and SBS manager(selector) should be
described in DSDT. From there we could look-up batteries and charger states.

Device (AC)
        {
            Name (_HID, "ACPI0003")
            Name (_PCL, Package (0x01)
            {
                _SB
            })
            Method (_PSR, 0, NotSerialized)
            {
                Store (One, Local0)
                Return (Local0)
            }

            Method (_STA, 0, NotSerialized)
            {
                Store (One, Local0)
                If (LEqual (Local0, One))
                {
                    Return (0x0F)
                }
                Else
                {
                    Return (Zero)
                }
            }
        }


-- 
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.

-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2005.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
acpi-bugzilla mailing list
acpi-bugzilla@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla

Reply via email to