diff options
author | Bob Moore <robert.moore@intel.com> | 2009-02-18 02:03:30 -0500 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-03-26 16:38:29 -0400 |
commit | ec41f193eadb6301f3c052b5e0dbc0b5636982e8 (patch) | |
tree | 9fd86c3b86925fc21868ca6f7e6bd6a0ecbf1d46 /drivers/acpi/acpica/tbinstal.c | |
parent | 7bcc06e845479bde939059bafa088bf25ede9dbf (diff) |
ACPICA: Formatting update - no functional changes
Split some long lines.
Signed-off-by: Bob Moore <robert.moore@intel.com>
Signed-off-by: Lin Ming <ming.m.lin@intel.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'drivers/acpi/acpica/tbinstal.c')
-rw-r--r-- | drivers/acpi/acpica/tbinstal.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/drivers/acpi/acpica/tbinstal.c b/drivers/acpi/acpica/tbinstal.c index ef269a297b57..c37993003f2c 100644 --- a/drivers/acpi/acpica/tbinstal.c +++ b/drivers/acpi/acpica/tbinstal.c | |||
@@ -273,8 +273,9 @@ acpi_status acpi_tb_resize_root_table_list(void) | |||
273 | /* Increase the Table Array size */ | 273 | /* Increase the Table Array size */ |
274 | 274 | ||
275 | tables = ACPI_ALLOCATE_ZEROED(((acpi_size) acpi_gbl_root_table_list. | 275 | tables = ACPI_ALLOCATE_ZEROED(((acpi_size) acpi_gbl_root_table_list. |
276 | size + ACPI_ROOT_TABLE_SIZE_INCREMENT) | 276 | size + |
277 | * sizeof(struct acpi_table_desc)); | 277 | ACPI_ROOT_TABLE_SIZE_INCREMENT) * |
278 | sizeof(struct acpi_table_desc)); | ||
278 | if (!tables) { | 279 | if (!tables) { |
279 | ACPI_ERROR((AE_INFO, | 280 | ACPI_ERROR((AE_INFO, |
280 | "Could not allocate new root table array")); | 281 | "Could not allocate new root table array")); |
@@ -561,8 +562,8 @@ u8 acpi_tb_is_table_loaded(u32 table_index) | |||
561 | (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES); | 562 | (void)acpi_ut_acquire_mutex(ACPI_MTX_TABLES); |
562 | if (table_index < acpi_gbl_root_table_list.count) { | 563 | if (table_index < acpi_gbl_root_table_list.count) { |
563 | is_loaded = (u8) | 564 | is_loaded = (u8) |
564 | (acpi_gbl_root_table_list.tables[table_index]. | 565 | (acpi_gbl_root_table_list.tables[table_index].flags & |
565 | flags & ACPI_TABLE_IS_LOADED); | 566 | ACPI_TABLE_IS_LOADED); |
566 | } | 567 | } |
567 | 568 | ||
568 | (void)acpi_ut_release_mutex(ACPI_MTX_TABLES); | 569 | (void)acpi_ut_release_mutex(ACPI_MTX_TABLES); |