Changeset 45e7868 in mainline for kernel/genarch/src/acpi/madt.c
- Timestamp:
- 2011-11-07T23:02:28Z (13 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 8c62a71
- Parents:
- a0c05e7 (diff), 7b5f4c9 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/genarch/src/acpi/madt.c
ra0c05e7 r45e7868 116 116 static int madt_irq_to_pin(unsigned int irq) 117 117 { 118 ASSERT(irq < sizeof(isa_irq_map) / sizeof(int)); 118 if (irq >= sizeof(isa_irq_map) / sizeof(int)) 119 return (int) irq; 119 120 120 121 return isa_irq_map[irq]; … … 178 179 ASSERT(override->source < sizeof(isa_irq_map) / sizeof(int)); 179 180 180 printf("MADT: Ignoring %s entry: bus=%" PRIu8 ", source=%" PRIu8 181 ", global_int=%" PRIu32 ", flags=%#" PRIx16 "\n", 182 entry[override->header.type], override->bus, override->source, 183 override->global_int, override->flags); 181 isa_irq_map[override->source] = override->global_int; 184 182 } 185 183
Note:
See TracChangeset
for help on using the changeset viewer.