Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 102018
b: refs/heads/master
c: d0e184a
h: refs/heads/master
v: v3
  • Loading branch information
Bob Moore authored and Andi Kleen committed Jul 16, 2008
1 parent 895e0f7 commit 18ffafa
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: b25d2a470bc9ffef4c34248952d914bd6fc0fcf6
refs/heads/master: d0e184abc5983281ef189db2c759d65d56eb1b80
17 changes: 17 additions & 0 deletions trunk/drivers/acpi/resources/rscreate.c
Original file line number Diff line number Diff line change
Expand Up @@ -284,6 +284,23 @@ acpi_rs_create_pci_routing_table(union acpi_operand_object *package_object,
}
}

/*
* If the BIOS has erroneously reversed the _PRT source_name (index 2)
* and the source_index (index 3), fix it. _PRT is important enough to
* workaround this BIOS error. This also provides compatibility with
* other ACPI implementations.
*/
obj_desc = sub_object_list[3];
if (!obj_desc
|| (ACPI_GET_OBJECT_TYPE(obj_desc) != ACPI_TYPE_INTEGER)) {
sub_object_list[3] = sub_object_list[2];
sub_object_list[2] = obj_desc;

ACPI_WARNING((AE_INFO,
"(PRT[%X].Source) SourceName and SourceIndex are reversed, fixed",
index));
}

/*
* 3) Third subobject: Dereference the PRT.source_name
* The name may be unresolved (slack mode), so allow a null object
Expand Down

0 comments on commit 18ffafa

Please sign in to comment.