Subversion Repositories HelenOS-historic

Rev

Rev 452 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 452 Rev 458
Line 40... Line 40...
40
#include <memstr.h>
40
#include <memstr.h>
41
#include <sort.h>
41
#include <sort.h>
42
 
42
 
43
struct acpi_madt *acpi_madt = NULL;
43
struct acpi_madt *acpi_madt = NULL;
44
 
44
 
45
#ifdef __SMP__
45
#ifdef CONFIG_SMP
46
 
46
 
47
static void madt_l_apic_entry(struct madt_l_apic *la, __u32 index);
47
static void madt_l_apic_entry(struct madt_l_apic *la, __u32 index);
48
static void madt_io_apic_entry(struct madt_io_apic *ioa, __u32 index);
48
static void madt_io_apic_entry(struct madt_io_apic *ioa, __u32 index);
49
static int madt_cmp(void * a, void * b);
49
static int madt_cmp(void * a, void * b);
50
 
50
 
Line 208... Line 208...
208
        return;
208
        return;
209
    }
209
    }
210
}
210
}
211
 
211
 
212
 
212
 
213
#endif /* __SMP__ */
213
#endif /* CONFIG_SMP */