Changeset fbf7b4c in mainline for genarch/src/acpi/acpi.c
- Timestamp:
- 2006-06-18T10:52:41Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- e600ec4
- Parents:
- 281994b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
genarch/src/acpi/acpi.c
r281994b rfbf7b4c 107 107 goto next; 108 108 *signature_map[j].sdt_ptr = h; 109 printf("%#z X: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description);109 printf("%#zx: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description); 110 110 } 111 111 } … … 128 128 goto next; 129 129 *signature_map[j].sdt_ptr = h; 130 printf("%#z X: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description);130 printf("%#zx: ACPI %s\n", *signature_map[j].sdt_ptr, signature_map[j].description); 131 131 } 132 132 } … … 162 162 163 163 rsdp_found: 164 printf("%#z X: ACPI Root System Description Pointer\n", acpi_rsdp);164 printf("%#zx: ACPI Root System Description Pointer\n", acpi_rsdp); 165 165 166 166 acpi_rsdt = (struct acpi_rsdt *) (__native) acpi_rsdp->rsdt_address;
Note:
See TracChangeset
for help on using the changeset viewer.