Changeset 01e48c1 in mainline for arch/ia32/src
- Timestamp:
- 2005-09-15T21:02:27Z (20 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 0a50f59
- Parents:
- d6dcdd2e
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
arch/ia32/src/acpi/madt.c
rd6dcdd2e r01e48c1 113 113 int madt_cmp(void * a, void * b) 114 114 { 115 116 (((struct madt_apic_header *) a)->type > ((struct madt_apic_header *) b)->type) ?117 1 :118 ((((struct madt_apic_header *) a)->type < ((struct madt_apic_header *) b)->type) ? -1 : 0);115 return 116 (((struct madt_apic_header *) a)->type > ((struct madt_apic_header *) b)->type) ? 117 1 : 118 ((((struct madt_apic_header *) a)->type < ((struct madt_apic_header *) b)->type) ? -1 : 0); 119 119 } 120 120 121 121 void acpi_madt_parse(void) 122 122 { 123 124 125 123 struct madt_apic_header *end = (struct madt_apic_header *) (((__u8 *) acpi_madt) + acpi_madt->header.length); 126 124 struct madt_apic_header *h;
Note:
See TracChangeset
for help on using the changeset viewer.