diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2009-02-09 21:05:47 +0100 |
---|---|---|
committer | Jeremy Fitzhardinge <jeremy@goop.org> | 2009-02-09 23:04:19 +0100 |
commit | 4924e228ae039029a9503ad571d91086e4042c90 (patch) | |
tree | ffd269c280fbca3400aa18bd0b81a0f518999c82 /arch/x86/kernel/acpi/boot.c | |
parent | x86: make apic_* operations inline functions (diff) | |
download | linux-4924e228ae039029a9503ad571d91086e4042c90.tar.xz linux-4924e228ae039029a9503ad571d91086e4042c90.zip |
x86: unstatic mp_find_ioapic so it can be used elsewhere
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Diffstat (limited to 'arch/x86/kernel/acpi/boot.c')
-rw-r--r-- | arch/x86/kernel/acpi/boot.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/acpi/boot.c b/arch/x86/kernel/acpi/boot.c index c334fe75dcd6..068b900f4b06 100644 --- a/arch/x86/kernel/acpi/boot.c +++ b/arch/x86/kernel/acpi/boot.c @@ -872,7 +872,7 @@ static struct { DECLARE_BITMAP(pin_programmed, MP_MAX_IOAPIC_PIN + 1); } mp_ioapic_routing[MAX_IO_APICS]; -static int mp_find_ioapic(int gsi) +int mp_find_ioapic(int gsi) { int i = 0; |