Changeset 085d973 in mainline for genarch/src/acpi/matd.c
- Timestamp:
- 2006-02-08T12:34:05Z (19 years ago)
- Branches:
- lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- 5e3757d
- Parents:
- eb1b8b6
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
genarch/src/acpi/matd.c
reb1b8b6 r085d973 37 37 #include <config.h> 38 38 #include <print.h> 39 #include <mm/ heap.h>39 #include <mm/slab.h> 40 40 #include <memstr.h> 41 41 #include <sort.h> … … 145 145 146 146 /* create madt apic entries index array */ 147 madt_entries_index = (struct madt_apic_header * *) early_malloc(madt_entries_index_cnt * sizeof(struct madt_apic_header * *));147 madt_entries_index = (struct madt_apic_header * *) malloc(madt_entries_index_cnt * sizeof(struct madt_apic_header * *)); 148 148 149 149 __u32 index = 0;
Note:
See TracChangeset
for help on using the changeset viewer.