| .. | .. |
|---|
| 3 | 3 | * |
|---|
| 4 | 4 | * Name: acmacros.h - C macros for the entire subsystem. |
|---|
| 5 | 5 | * |
|---|
| 6 | | - * Copyright (C) 2000 - 2018, Intel Corp. |
|---|
| 6 | + * Copyright (C) 2000 - 2020, Intel Corp. |
|---|
| 7 | 7 | * |
|---|
| 8 | 8 | *****************************************************************************/ |
|---|
| 9 | 9 | |
|---|
| .. | .. |
|---|
| 462 | 462 | #define ACPI_IS_OCTAL_DIGIT(d) (((char)(d) >= '0') && ((char)(d) <= '7')) |
|---|
| 463 | 463 | |
|---|
| 464 | 464 | /* |
|---|
| 465 | | - * Macors used for the ASL-/ASL+ converter utility |
|---|
| 465 | + * Macros used for the ASL-/ASL+ converter utility |
|---|
| 466 | 466 | */ |
|---|
| 467 | 467 | #ifdef ACPI_ASL_COMPILER |
|---|
| 468 | 468 | |
|---|
| .. | .. |
|---|
| 477 | 477 | #define ASL_CV_PRINT_ONE_COMMENT(a,b,c,d) cv_print_one_comment_type (a,b,c,d); |
|---|
| 478 | 478 | #define ASL_CV_PRINT_ONE_COMMENT_LIST(a,b) cv_print_one_comment_list (a,b); |
|---|
| 479 | 479 | #define ASL_CV_FILE_HAS_SWITCHED(a) cv_file_has_switched(a) |
|---|
| 480 | | -#define ASL_CV_INIT_FILETREE(a,b,c) cv_init_file_tree(a,b,c); |
|---|
| 480 | +#define ASL_CV_INIT_FILETREE(a,b) cv_init_file_tree(a,b); |
|---|
| 481 | 481 | |
|---|
| 482 | 482 | #else |
|---|
| 483 | 483 | |
|---|
| .. | .. |
|---|
| 492 | 492 | #define ASL_CV_PRINT_ONE_COMMENT(a,b,c,d) |
|---|
| 493 | 493 | #define ASL_CV_PRINT_ONE_COMMENT_LIST(a,b) |
|---|
| 494 | 494 | #define ASL_CV_FILE_HAS_SWITCHED(a) 0 |
|---|
| 495 | | -#define ASL_CV_INIT_FILETREE(a,b,c) |
|---|
| 495 | +#define ASL_CV_INIT_FILETREE(a,b) |
|---|
| 496 | 496 | |
|---|
| 497 | 497 | #endif |
|---|
| 498 | 498 | |
|---|