Commit 538ac46c authored by Dou Liyang's avatar Dou Liyang Committed by Ingo Molnar

x86/apic: Make arch_init_msi/htirq_domain __init

These two functions are only called by arch_early_irq_init(), which
is an __init function, so mark them __init as well.
Signed-off-by: default avatarDou Liyang <douly.fnst@cn.fujitsu.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Link: http://lkml.kernel.org/r/1498101341-10182-1-git-send-email-douly.fnst@cn.fujitsu.comSigned-off-by: default avatarIngo Molnar <mingo@kernel.org>
parent a884d25f
...@@ -150,7 +150,7 @@ static const struct irq_domain_ops htirq_domain_ops = { ...@@ -150,7 +150,7 @@ static const struct irq_domain_ops htirq_domain_ops = {
.deactivate = htirq_domain_deactivate, .deactivate = htirq_domain_deactivate,
}; };
void arch_init_htirq_domain(struct irq_domain *parent) void __init arch_init_htirq_domain(struct irq_domain *parent)
{ {
if (disable_apic) if (disable_apic)
return; return;
......
...@@ -136,7 +136,7 @@ static struct msi_domain_info pci_msi_domain_info = { ...@@ -136,7 +136,7 @@ static struct msi_domain_info pci_msi_domain_info = {
.handler_name = "edge", .handler_name = "edge",
}; };
void arch_init_msi_domain(struct irq_domain *parent) void __init arch_init_msi_domain(struct irq_domain *parent)
{ {
if (disable_apic) if (disable_apic)
return; return;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment