diff options
Diffstat (limited to 'drivers/acpi/acpica/tbutils.c')
-rw-r--r-- | drivers/acpi/acpica/tbutils.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/drivers/acpi/acpica/tbutils.c b/drivers/acpi/acpica/tbutils.c index 0f2d395feab..09ca39e1433 100644 --- a/drivers/acpi/acpica/tbutils.c +++ b/drivers/acpi/acpica/tbutils.c | |||
@@ -5,7 +5,7 @@ | |||
5 | *****************************************************************************/ | 5 | *****************************************************************************/ |
6 | 6 | ||
7 | /* | 7 | /* |
8 | * Copyright (C) 2000 - 2011, Intel Corp. | 8 | * Copyright (C) 2000 - 2012, Intel Corp. |
9 | * All rights reserved. | 9 | * All rights reserved. |
10 | * | 10 | * |
11 | * Redistribution and use in source and binary forms, with or without | 11 | * Redistribution and use in source and binary forms, with or without |
@@ -135,6 +135,13 @@ acpi_status acpi_tb_initialize_facs(void) | |||
135 | { | 135 | { |
136 | acpi_status status; | 136 | acpi_status status; |
137 | 137 | ||
138 | /* If Hardware Reduced flag is set, there is no FACS */ | ||
139 | |||
140 | if (acpi_gbl_reduced_hardware) { | ||
141 | acpi_gbl_FACS = NULL; | ||
142 | return (AE_OK); | ||
143 | } | ||
144 | |||
138 | status = acpi_get_table_by_index(ACPI_TABLE_INDEX_FACS, | 145 | status = acpi_get_table_by_index(ACPI_TABLE_INDEX_FACS, |
139 | ACPI_CAST_INDIRECT_PTR(struct | 146 | ACPI_CAST_INDIRECT_PTR(struct |
140 | acpi_table_header, | 147 | acpi_table_header, |