Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 131094
b: refs/heads/master
c: 9e3a9d1
h: refs/heads/master
v: v3
  • Loading branch information
Len Brown committed Feb 6, 2009
1 parent cb0acd5 commit fabc65c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f3b39f1393d5cebe56f43a584ef47efbebd2702c
refs/heads/master: 9e3a9d1ed8cc8db93e5c53e9a5b09065bd95de8b
7 changes: 6 additions & 1 deletion trunk/drivers/acpi/tables.c
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,12 @@ static void __init check_multiple_madt(void)

int __init acpi_table_init(void)
{
acpi_initialize_tables(initial_tables, ACPI_MAX_TABLES, 0);
acpi_status status;

status = acpi_initialize_tables(initial_tables, ACPI_MAX_TABLES, 0);
if (ACPI_FAILURE(status))
return 1;

check_multiple_madt();
return 0;
}
Expand Down

0 comments on commit fabc65c

Please sign in to comment.