https://bugzilla.kernel.org/show_bug.cgi?id=198051

--- Comment #7 from Erik Schmauss ([email protected]) ---
Actually, this could be an issue with module-level code. We are in the process
of fixing this. Linking to this bug https://bugs.acpica.org/show_bug.cgi?id=963
As of now, we execute if statements at the root scope after all tables have
been loaded. So this code

if (Expr)
{
    Device (HS11){...}
}

gets executed after

Scope (HS11){...}

We are working on changing the order so that the the if statements get executed
in the correct order. If we have the correct order of execution and Expr
evaluates to a non-zero value, Device HS11 will be declared and fix this error:

[    0.000000] ACPI Error: [\_SB_.PCI0.XHC_.RHUB.HS11] Namespace lookup
failure, AE_NOT_FOUND (20170831/dswload-210)

-- 
You are receiving this mail because:
You are watching someone on the CC list of the bug.
------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most
engaging tech sites, Slashdot.org! http://sdm.link/slashdot
_______________________________________________
acpi-bugzilla mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/acpi-bugzilla

Reply via email to