diff options
Diffstat (limited to 'include/acpi/acmacros.h')
-rw-r--r-- | include/acpi/acmacros.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/acpi/acmacros.h b/include/acpi/acmacros.h index c8aa73fc6dd3..c495670aa11a 100644 --- a/include/acpi/acmacros.h +++ b/include/acpi/acmacros.h | |||
@@ -400,8 +400,8 @@ | |||
400 | * | 400 | * |
401 | * The "Descriptor" field is the first field in both structures. | 401 | * The "Descriptor" field is the first field in both structures. |
402 | */ | 402 | */ |
403 | #define ACPI_GET_DESCRIPTOR_TYPE(d) (((union acpi_descriptor *)(void *)(d))->descriptor_id) | 403 | #define ACPI_GET_DESCRIPTOR_TYPE(d) (((union acpi_descriptor *)(void *)(d))->common.descriptor_type) |
404 | #define ACPI_SET_DESCRIPTOR_TYPE(d,t) (((union acpi_descriptor *)(void *)(d))->descriptor_id = t) | 404 | #define ACPI_SET_DESCRIPTOR_TYPE(d,t) (((union acpi_descriptor *)(void *)(d))->common.descriptor_type = t) |
405 | 405 | ||
406 | /* Macro to test the object type */ | 406 | /* Macro to test the object type */ |
407 | 407 | ||
@@ -490,7 +490,6 @@ | |||
490 | #define ACPI_ERROR(plist) | 490 | #define ACPI_ERROR(plist) |
491 | #define ACPI_ERROR_NAMESPACE(s,e) | 491 | #define ACPI_ERROR_NAMESPACE(s,e) |
492 | #define ACPI_ERROR_METHOD(s,n,p,e) | 492 | #define ACPI_ERROR_METHOD(s,n,p,e) |
493 | |||
494 | #endif | 493 | #endif |
495 | 494 | ||
496 | /* | 495 | /* |
@@ -532,13 +531,13 @@ | |||
532 | #endif | 531 | #endif |
533 | 532 | ||
534 | #define ACPI_FUNCTION_TRACE(a) ACPI_FUNCTION_NAME(a) \ | 533 | #define ACPI_FUNCTION_TRACE(a) ACPI_FUNCTION_NAME(a) \ |
535 | acpi_ut_trace(ACPI_DEBUG_PARAMETERS) | 534 | acpi_ut_trace(ACPI_DEBUG_PARAMETERS) |
536 | #define ACPI_FUNCTION_TRACE_PTR(a,b) ACPI_FUNCTION_NAME(a) \ | 535 | #define ACPI_FUNCTION_TRACE_PTR(a,b) ACPI_FUNCTION_NAME(a) \ |
537 | acpi_ut_trace_ptr(ACPI_DEBUG_PARAMETERS,(void *)b) | 536 | acpi_ut_trace_ptr(ACPI_DEBUG_PARAMETERS,(void *)b) |
538 | #define ACPI_FUNCTION_TRACE_U32(a,b) ACPI_FUNCTION_NAME(a) \ | 537 | #define ACPI_FUNCTION_TRACE_U32(a,b) ACPI_FUNCTION_NAME(a) \ |
539 | acpi_ut_trace_u32(ACPI_DEBUG_PARAMETERS,(u32)b) | 538 | acpi_ut_trace_u32(ACPI_DEBUG_PARAMETERS,(u32)b) |
540 | #define ACPI_FUNCTION_TRACE_STR(a,b) ACPI_FUNCTION_NAME(a) \ | 539 | #define ACPI_FUNCTION_TRACE_STR(a,b) ACPI_FUNCTION_NAME(a) \ |
541 | acpi_ut_trace_str(ACPI_DEBUG_PARAMETERS,(char *)b) | 540 | acpi_ut_trace_str(ACPI_DEBUG_PARAMETERS,(char *)b) |
542 | 541 | ||
543 | #define ACPI_FUNCTION_ENTRY() acpi_ut_track_stack_ptr() | 542 | #define ACPI_FUNCTION_ENTRY() acpi_ut_track_stack_ptr() |
544 | 543 | ||
@@ -658,6 +657,7 @@ | |||
658 | #define ACPI_DUMP_STACK_ENTRY(a) | 657 | #define ACPI_DUMP_STACK_ENTRY(a) |
659 | #define ACPI_DUMP_OPERANDS(a,b,c,d,e) | 658 | #define ACPI_DUMP_OPERANDS(a,b,c,d,e) |
660 | #define ACPI_DUMP_ENTRY(a,b) | 659 | #define ACPI_DUMP_ENTRY(a,b) |
660 | #define ACPI_DUMP_TABLES(a,b) | ||
661 | #define ACPI_DUMP_PATHNAME(a,b,c,d) | 661 | #define ACPI_DUMP_PATHNAME(a,b,c,d) |
662 | #define ACPI_DUMP_RESOURCE_LIST(a) | 662 | #define ACPI_DUMP_RESOURCE_LIST(a) |
663 | #define ACPI_DUMP_BUFFER(a,b) | 663 | #define ACPI_DUMP_BUFFER(a,b) |
@@ -714,7 +714,7 @@ | |||
714 | /* Memory allocation */ | 714 | /* Memory allocation */ |
715 | 715 | ||
716 | #define ACPI_ALLOCATE(a) acpi_ut_allocate((acpi_size)(a),_COMPONENT,_acpi_module_name,__LINE__) | 716 | #define ACPI_ALLOCATE(a) acpi_ut_allocate((acpi_size)(a),_COMPONENT,_acpi_module_name,__LINE__) |
717 | #define ACPI_ALLOCATE_ZEROED(a) acpi_ut_callocate((acpi_size)(a), _COMPONENT,_acpi_module_name,__LINE__) | 717 | #define ACPI_ALLOCATE_ZEROED(a) acpi_ut_allocate_zeroed((acpi_size)(a), _COMPONENT,_acpi_module_name,__LINE__) |
718 | #define ACPI_FREE(a) acpi_os_free(a) | 718 | #define ACPI_FREE(a) acpi_os_free(a) |
719 | #define ACPI_MEM_TRACKING(a) | 719 | #define ACPI_MEM_TRACKING(a) |
720 | 720 | ||
@@ -723,9 +723,9 @@ | |||
723 | /* Memory allocation */ | 723 | /* Memory allocation */ |
724 | 724 | ||
725 | #define ACPI_ALLOCATE(a) acpi_ut_allocate_and_track((acpi_size)(a),_COMPONENT,_acpi_module_name,__LINE__) | 725 | #define ACPI_ALLOCATE(a) acpi_ut_allocate_and_track((acpi_size)(a),_COMPONENT,_acpi_module_name,__LINE__) |
726 | #define ACPI_ALLOCATE_ZEROED(a) acpi_ut_callocate_and_track((acpi_size)(a), _COMPONENT,_acpi_module_name,__LINE__) | 726 | #define ACPI_ALLOCATE_ZEROED(a) acpi_ut_allocate_zeroed_and_track((acpi_size)(a), _COMPONENT,_acpi_module_name,__LINE__) |
727 | #define ACPI_FREE(a) acpi_ut_free_and_track(a,_COMPONENT,_acpi_module_name,__LINE__) | 727 | #define ACPI_FREE(a) acpi_ut_free_and_track(a,_COMPONENT,_acpi_module_name,__LINE__) |
728 | #define ACPI_MEM_TRACKING(a) a | 728 | #define ACPI_MEM_TRACKING(a) a |
729 | 729 | ||
730 | #endif /* ACPI_DBG_TRACK_ALLOCATIONS */ | 730 | #endif /* ACPI_DBG_TRACK_ALLOCATIONS */ |
731 | 731 | ||