All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86/pci: don't set acpi stuff if !CONFIG_ACPI
@ 2020-08-20 12:53 Adam Borowski
  2020-08-20 14:24 ` Randy Dunlap
  2020-08-21 20:13 ` Thomas Gleixner
  0 siblings, 2 replies; 6+ messages in thread
From: Adam Borowski @ 2020-08-20 12:53 UTC (permalink / raw)
  To: Bjorn Helgaas, Thomas Gleixner, Ingo Molnar, Borislav Petkov, x86,
	linux-pci
  Cc: Adam Borowski

Not that x86 without ACPI sees any real use...

Signed-off-by: Adam Borowski <kilobyte@angband.pl>
---
Found by randconfig builds.

 arch/x86/pci/intel_mid_pci.c | 2 ++
 arch/x86/pci/xen.c           | 2 ++
 2 files changed, 4 insertions(+)

diff --git a/arch/x86/pci/intel_mid_pci.c b/arch/x86/pci/intel_mid_pci.c
index 00c62115f39c..f14a911f0d06 100644
--- a/arch/x86/pci/intel_mid_pci.c
+++ b/arch/x86/pci/intel_mid_pci.c
@@ -299,8 +299,10 @@ int __init intel_mid_pci_init(void)
 	pcibios_disable_irq = intel_mid_pci_irq_disable;
 	pci_root_ops = intel_mid_pci_ops;
 	pci_soc_mode = 1;
+#ifdef CONFIG_ACPI
 	/* Continue with standard init */
 	acpi_noirq_set();
+#endif
 	return 1;
 }
 
diff --git a/arch/x86/pci/xen.c b/arch/x86/pci/xen.c
index 9f9aad42ccff..681eb5c34c03 100644
--- a/arch/x86/pci/xen.c
+++ b/arch/x86/pci/xen.c
@@ -406,8 +406,10 @@ int __init pci_xen_init(void)
 	pcibios_enable_irq = xen_pcifront_enable_irq;
 	pcibios_disable_irq = NULL;
 
+#ifdef CONFIG_ACPI
 	/* Keep ACPI out of the picture */
 	acpi_noirq_set();
+#endif
 
 #ifdef CONFIG_PCI_MSI
 	x86_msi.setup_msi_irqs = xen_setup_msi_irqs;
-- 
2.28.0


^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2020-08-21 23:52 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-08-20 12:53 [PATCH] x86/pci: don't set acpi stuff if !CONFIG_ACPI Adam Borowski
2020-08-20 14:24 ` Randy Dunlap
2020-08-21 20:13 ` Thomas Gleixner
2020-08-21 20:32   ` Adam Borowski
2020-08-21 21:19     ` Randy Dunlap
2020-08-21 23:52       ` Thomas Gleixner

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.