diff options
author | Tony Luck <tony.luck@intel.com> | 2005-10-28 22:22:55 +0200 |
---|---|---|
committer | Tony Luck <tony.luck@intel.com> | 2005-10-28 22:22:55 +0200 |
commit | dbcb25e621136e377dbc44bd7402e21c6641c43d (patch) | |
tree | f6f7cb9f415b35dbdefda8d5c1b03c3a36d26f9b /arch/ia64/kernel | |
parent | Pull ar-k0-usage into release branch (diff) | |
parent | [IA64] move ACPI IOSAPIC locality domain mapping from pci.c to acpi.c (diff) | |
download | linux-dbcb25e621136e377dbc44bd7402e21c6641c43d.tar.xz linux-dbcb25e621136e377dbc44bd7402e21c6641c43d.zip |
Pull move-iosapic-to-acpi into release branch
Diffstat (limited to 'arch/ia64/kernel')
-rw-r--r-- | arch/ia64/kernel/acpi.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/arch/ia64/kernel/acpi.c b/arch/ia64/kernel/acpi.c index 7e926471e4ec..9ad94ddf6687 100644 --- a/arch/ia64/kernel/acpi.c +++ b/arch/ia64/kernel/acpi.c @@ -838,7 +838,7 @@ EXPORT_SYMBOL(acpi_unmap_lsapic); #endif /* CONFIG_ACPI_HOTPLUG_CPU */ #ifdef CONFIG_ACPI_NUMA -acpi_status __devinit +static acpi_status __devinit acpi_map_iosapic(acpi_handle handle, u32 depth, void *context, void **ret) { struct acpi_buffer buffer = { ACPI_ALLOCATE_BUFFER, NULL }; @@ -890,7 +890,16 @@ acpi_map_iosapic(acpi_handle handle, u32 depth, void *context, void **ret) map_iosapic_to_node(gsi_base, node); return AE_OK; } -#endif /* CONFIG_NUMA */ + +static int __init +acpi_map_iosapics (void) +{ + acpi_get_devices(NULL, acpi_map_iosapic, NULL, NULL); + return 0; +} + +fs_initcall(acpi_map_iosapics); +#endif /* CONFIG_ACPI_NUMA */ int acpi_register_ioapic(acpi_handle handle, u64 phys_addr, u32 gsi_base) { |