| .. | .. |
|---|
| 3 | 3 | * |
|---|
| 4 | 4 | * Module Name: dsinit - Object initialization namespace walk |
|---|
| 5 | 5 | * |
|---|
| 6 | | - * Copyright (C) 2000 - 2018, Intel Corp. |
|---|
| 6 | + * Copyright (C) 2000 - 2020, Intel Corp. |
|---|
| 7 | 7 | * |
|---|
| 8 | 8 | *****************************************************************************/ |
|---|
| 9 | 9 | |
|---|
| .. | .. |
|---|
| 200 | 200 | |
|---|
| 201 | 201 | /* DSDT is always the first AML table */ |
|---|
| 202 | 202 | |
|---|
| 203 | | - if (ACPI_COMPARE_NAME(table->signature, ACPI_SIG_DSDT)) { |
|---|
| 203 | + if (ACPI_COMPARE_NAMESEG(table->signature, ACPI_SIG_DSDT)) { |
|---|
| 204 | 204 | ACPI_DEBUG_PRINT_RAW((ACPI_DB_INIT, |
|---|
| 205 | | - "\nInitializing Namespace objects:\n")); |
|---|
| 205 | + "\nACPI table initialization:\n")); |
|---|
| 206 | 206 | } |
|---|
| 207 | 207 | |
|---|
| 208 | 208 | /* Summary of objects initialized */ |
|---|