Commit 0f5e01fa authored by Andy Grover's avatar Andy Grover

ACPI: Fix reversed logic in blacklist code (Sergio Monteiro Basto)

parent 21c5f9d0
...@@ -95,7 +95,7 @@ acpi_blacklisted(void) ...@@ -95,7 +95,7 @@ acpi_blacklisted(void)
while (acpi_blacklist[i].oem_id[0] != '\0') while (acpi_blacklist[i].oem_id[0] != '\0')
{ {
if (!acpi_get_table_header_early(acpi_blacklist[i].table, &table_header)) { if (acpi_get_table_header_early(acpi_blacklist[i].table, &table_header)) {
i++; i++;
continue; continue;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment