Changeset 280a27e in mainline for genarch/src/acpi/matd.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/matd.c
rc624b96 r280a27e 177 177 case MADT_L_SAPIC: 178 178 case MADT_PLATFORM_INTR_SRC: 179 printf("MADT: skipping %s entry (type=% d)\n", entry[h->type], h->type);179 printf("MADT: skipping %s entry (type=%zd)\n", entry[h->type], h->type); 180 180 break; 181 181 182 182 default: 183 183 if (h->type >= MADT_RESERVED_SKIP_BEGIN && h->type <= MADT_RESERVED_SKIP_END) { 184 printf("MADT: skipping reserved entry (type=% d)\n", h->type);184 printf("MADT: skipping reserved entry (type=%zd)\n", h->type); 185 185 } 186 186 if (h->type >= MADT_RESERVED_OEM_BEGIN) { 187 printf("MADT: skipping OEM entry (type=% d)\n", h->type);187 printf("MADT: skipping OEM entry (type=%zd)\n", h->type); 188 188 } 189 189 break; … … 229 229 { 230 230 ASSERT(override->source < sizeof(isa_irq_map)/sizeof(int)); 231 printf("MADT: ignoring %s entry: bus=% d, source=%d, global_int=%d, flags=%W\n",231 printf("MADT: ignoring %s entry: bus=%zd, source=%zd, global_int=%zd, flags=%#hX\n", 232 232 entry[override->header.type], override->bus, override->source, 233 233 override->global_int, override->flags);
Note:
See TracChangeset
for help on using the changeset viewer.