Comment 5 for bug 1311777

Revision history for this message
Alex Hung (alexhung) wrote :

In dis-assembled ASL, _PCL is as below:

Method (_PCL, 0, NotSerialized) // _PCL: Power Consumer List
{
       Return (_SB)
}

However, _PCL should returns "A variable-length Package containing a list of References to devices or buses", which means it should be something like below:

Method (_PCL, 0, NotSerialized) // _PCL: Power Consumer List
{
       Return (Package(_SB))
}

As in #3, _PCL is not really used, so it's safe to ignore it.