|
@@ -171,9 +171,14 @@ static int flat_phys_pkg_id(int initial_apic_id, int index_msb)
|
|
return initial_apic_id >> index_msb;
|
|
return initial_apic_id >> index_msb;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+static int flat_probe(void)
|
|
|
|
+{
|
|
|
|
+ return 1;
|
|
|
|
+}
|
|
|
|
+
|
|
static struct apic apic_flat = {
|
|
static struct apic apic_flat = {
|
|
.name = "flat",
|
|
.name = "flat",
|
|
- .probe = NULL,
|
|
|
|
|
|
+ .probe = flat_probe,
|
|
.acpi_madt_oem_check = flat_acpi_madt_oem_check,
|
|
.acpi_madt_oem_check = flat_acpi_madt_oem_check,
|
|
.apic_id_registered = flat_apic_id_registered,
|
|
.apic_id_registered = flat_apic_id_registered,
|
|
|
|
|