diff options
Diffstat (limited to 'drivers/acpi/tables/tbget.c')
-rw-r--r-- | drivers/acpi/tables/tbget.c | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/drivers/acpi/tables/tbget.c b/drivers/acpi/tables/tbget.c index b7bd20b9a75e..3a4f46ca3884 100644 --- a/drivers/acpi/tables/tbget.c +++ b/drivers/acpi/tables/tbget.c | |||
@@ -78,7 +78,7 @@ acpi_tb_get_table(struct acpi_pointer *address, | |||
78 | acpi_status status; | 78 | acpi_status status; |
79 | struct acpi_table_header header; | 79 | struct acpi_table_header header; |
80 | 80 | ||
81 | ACPI_FUNCTION_TRACE("tb_get_table"); | 81 | ACPI_FUNCTION_TRACE(tb_get_table); |
82 | 82 | ||
83 | /* Get the header in order to get signature and table size */ | 83 | /* Get the header in order to get signature and table size */ |
84 | 84 | ||
@@ -124,7 +124,7 @@ acpi_tb_get_table_header(struct acpi_pointer *address, | |||
124 | acpi_status status = AE_OK; | 124 | acpi_status status = AE_OK; |
125 | struct acpi_table_header *header = NULL; | 125 | struct acpi_table_header *header = NULL; |
126 | 126 | ||
127 | ACPI_FUNCTION_TRACE("tb_get_table_header"); | 127 | ACPI_FUNCTION_TRACE(tb_get_table_header); |
128 | 128 | ||
129 | /* | 129 | /* |
130 | * Flags contains the current processor mode (Virtual or Physical | 130 | * Flags contains the current processor mode (Virtual or Physical |
@@ -202,7 +202,7 @@ acpi_tb_get_table_body(struct acpi_pointer *address, | |||
202 | { | 202 | { |
203 | acpi_status status; | 203 | acpi_status status; |
204 | 204 | ||
205 | ACPI_FUNCTION_TRACE("tb_get_table_body"); | 205 | ACPI_FUNCTION_TRACE(tb_get_table_body); |
206 | 206 | ||
207 | if (!table_info || !address) { | 207 | if (!table_info || !address) { |
208 | return_ACPI_STATUS(AE_BAD_PARAMETER); | 208 | return_ACPI_STATUS(AE_BAD_PARAMETER); |
@@ -246,7 +246,7 @@ acpi_tb_table_override(struct acpi_table_header *header, | |||
246 | acpi_status status; | 246 | acpi_status status; |
247 | struct acpi_pointer address; | 247 | struct acpi_pointer address; |
248 | 248 | ||
249 | ACPI_FUNCTION_TRACE("tb_table_override"); | 249 | ACPI_FUNCTION_TRACE(tb_table_override); |
250 | 250 | ||
251 | /* | 251 | /* |
252 | * The OSL will examine the header and decide whether to override this | 252 | * The OSL will examine the header and decide whether to override this |
@@ -318,7 +318,7 @@ acpi_tb_get_this_table(struct acpi_pointer *address, | |||
318 | u8 allocation; | 318 | u8 allocation; |
319 | acpi_status status = AE_OK; | 319 | acpi_status status = AE_OK; |
320 | 320 | ||
321 | ACPI_FUNCTION_TRACE("tb_get_this_table"); | 321 | ACPI_FUNCTION_TRACE(tb_get_this_table); |
322 | 322 | ||
323 | /* | 323 | /* |
324 | * Flags contains the current processor mode (Virtual or Physical | 324 | * Flags contains the current processor mode (Virtual or Physical |
@@ -383,7 +383,7 @@ acpi_tb_get_this_table(struct acpi_pointer *address, | |||
383 | * Validate checksum for _most_ tables, | 383 | * Validate checksum for _most_ tables, |
384 | * even the ones whose signature we don't recognize | 384 | * even the ones whose signature we don't recognize |
385 | */ | 385 | */ |
386 | if (table_info->type != ACPI_TABLE_FACS) { | 386 | if (table_info->type != ACPI_TABLE_ID_FACS) { |
387 | status = acpi_tb_verify_table_checksum(full_table); | 387 | status = acpi_tb_verify_table_checksum(full_table); |
388 | 388 | ||
389 | #if (!ACPI_CHECKSUM_ABORT) | 389 | #if (!ACPI_CHECKSUM_ABORT) |
@@ -433,13 +433,13 @@ acpi_tb_get_table_ptr(acpi_table_type table_type, | |||
433 | struct acpi_table_desc *table_desc; | 433 | struct acpi_table_desc *table_desc; |
434 | u32 i; | 434 | u32 i; |
435 | 435 | ||
436 | ACPI_FUNCTION_TRACE("tb_get_table_ptr"); | 436 | ACPI_FUNCTION_TRACE(tb_get_table_ptr); |
437 | 437 | ||
438 | if (!acpi_gbl_DSDT) { | 438 | if (!acpi_gbl_DSDT) { |
439 | return_ACPI_STATUS(AE_NO_ACPI_TABLES); | 439 | return_ACPI_STATUS(AE_NO_ACPI_TABLES); |
440 | } | 440 | } |
441 | 441 | ||
442 | if (table_type > ACPI_TABLE_MAX) { | 442 | if (table_type > ACPI_TABLE_ID_MAX) { |
443 | return_ACPI_STATUS(AE_BAD_PARAMETER); | 443 | return_ACPI_STATUS(AE_BAD_PARAMETER); |
444 | } | 444 | } |
445 | 445 | ||