Subversion Repositories HelenOS-historic

Compare Revisions

Ignore whitespace Rev 813 → Rev 814

/kernel/trunk/genarch/src/acpi/matd.c
36,7 → 36,7
#include <debug.h>
#include <config.h>
#include <print.h>
#include <mm/heap.h>
#include <mm/slab.h>
#include <memstr.h>
#include <sort.h>
 
144,7 → 144,7
}
 
/* create madt apic entries index array */
madt_entries_index = (struct madt_apic_header * *) early_malloc(madt_entries_index_cnt * sizeof(struct madt_apic_header * *));
madt_entries_index = (struct madt_apic_header * *) malloc(madt_entries_index_cnt * sizeof(struct madt_apic_header * *));
 
__u32 index = 0;