forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-05-10 748e4f3d702def1a4bff191e0cf93b6a05340f01
kernel/drivers/acpi/acpica/dbdisply.c
....@@ -51,6 +51,8 @@
5151 ACPI_ADR_SPACE_IPMI,
5252 ACPI_ADR_SPACE_GPIO,
5353 ACPI_ADR_SPACE_GSBUS,
54
+ ACPI_ADR_SPACE_PLATFORM_COMM,
55
+ ACPI_ADR_SPACE_PLATFORM_RT,
5456 ACPI_ADR_SPACE_DATA_TABLE,
5557 ACPI_ADR_SPACE_FIXED_HARDWARE
5658 };
....@@ -237,7 +239,7 @@
237239
238240 default:
239241
240
- /* Is not a recognizeable object */
242
+ /* Is not a recognizable object */
241243
242244 acpi_os_printf
243245 ("Not a known ACPI internal object, descriptor type %2.2X\n",
....@@ -513,7 +515,6 @@
513515 return;
514516 }
515517
516
- obj_desc = walk_state->method_desc;
517518 node = walk_state->method_node;
518519
519520 if (walk_state->results) {
....@@ -565,7 +566,6 @@
565566 return;
566567 }
567568
568
- node = walk_state->method_node;
569569 acpi_os_printf("Current Control Method Call Tree\n");
570570
571571 while (walk_state) {
....@@ -647,7 +647,7 @@
647647 *
648648 * DESCRIPTION: Display the result of an AML opcode
649649 *
650
- * Note: Curently only displays the result object if we are single stepping.
650
+ * Note: Currently only displays the result object if we are single stepping.
651651 * However, this output may be useful in other contexts and could be enabled
652652 * to do so if needed.
653653 *