Changeset 280a27e in mainline for genarch/src/acpi/acpi.c
- Timestamp:
- 2006-04-16T13:16:44Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 50de918
- Parents:
- c624b96
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
genarch/src/acpi/acpi.c
rc624b96 r280a27e 97 97 goto next; 98 98 *signature_map[j].sdt_ptr = h; 99 printf("% P: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description);99 printf("%#zX: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description); 100 100 } 101 101 } … … 118 118 goto next; 119 119 *signature_map[j].sdt_ptr = h; 120 printf("% P: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description);120 printf("%#zX: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description); 121 121 } 122 122 } … … 152 152 153 153 rsdp_found: 154 printf("% P: ACPI Root System Description Pointer\n", acpi_rsdp);154 printf("%#zX: ACPI Root System Description Pointer\n", acpi_rsdp); 155 155 156 156 acpi_rsdt = (struct acpi_rsdt *) (__native) acpi_rsdp->rsdt_address;
Note:
See TracChangeset
for help on using the changeset viewer.