diff options
author | Al Viro <viro@ftp.linux.org.uk> | 2008-11-22 17:37:34 +0000 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-11-30 10:03:37 -0800 |
commit | 2236d252e001ea57d53cec1954f680e503f3b8bc (patch) | |
tree | 0970ed5fcd3b126d8d96003700dbd1f75457a9b1 /arch/x86/kernel | |
parent | ad04d31e5fb6b25308e6cdea6baa07d41871a3e0 (diff) |
enable_IR_x2apic() needs to be __init
calls __init, called only from __init
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/x86/kernel')
-rw-r--r-- | arch/x86/kernel/apic.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/apic.c b/arch/x86/kernel/apic.c index 04a7f960bbc..16f94879b52 100644 --- a/arch/x86/kernel/apic.c +++ b/arch/x86/kernel/apic.c @@ -1315,7 +1315,7 @@ void enable_x2apic(void) } } -void enable_IR_x2apic(void) +void __init enable_IR_x2apic(void) { #ifdef CONFIG_INTR_REMAP int ret; |