|
|
|
|
|
|
|
|
|
|
xen-devel
[Xen-devel] [PATCH 08/10] xen/pci: Retire unnecessary #ifdef CONFIG_ACPI
As the code paths that are guarded by CONFIG_XEN_DOM0 already depend
on CONFIG_ACPI so the extra #ifdef is not required. The earlier
patch that added them in had done its job.
Signed-off-by: Konrad Rzeszutek Wilk <konrad.wilk@xxxxxxxxxx>
---
arch/x86/pci/xen.c | 4 ----
1 files changed, 0 insertions(+), 4 deletions(-)
diff --git a/arch/x86/pci/xen.c b/arch/x86/pci/xen.c
index e585bf5..6eddc52 100644
--- a/arch/x86/pci/xen.c
+++ b/arch/x86/pci/xen.c
@@ -381,7 +381,6 @@ int __init pci_xen_hvm_init(void)
}
#ifdef CONFIG_XEN_DOM0
-#ifdef CONFIG_ACPI
static __init void xen_setup_acpi_sci(void)
{
int rc;
@@ -428,7 +427,6 @@ static __init void xen_setup_acpi_sci(void)
return;
}
-#endif
int __init pci_xen_initial_domain(void)
{
@@ -438,7 +436,6 @@ int __init pci_xen_initial_domain(void)
x86_msi.setup_msi_irqs = xen_initdom_setup_msi_irqs;
x86_msi.teardown_msi_irq = xen_teardown_msi_irq;
#endif
-#ifdef CONFIG_ACPI
xen_setup_acpi_sci();
__acpi_register_gsi = acpi_register_gsi_xen;
/* Pre-allocate legacy irqs */
@@ -452,7 +449,6 @@ int __init pci_xen_initial_domain(void)
trigger ? ACPI_LEVEL_SENSITIVE : ACPI_EDGE_SENSITIVE,
true /* allocate IRQ */);
}
-#endif
if (0 == nr_ioapics) {
for (irq = 0; irq < NR_IRQS_LEGACY; irq++) {
pirq = xen_allocate_pirq_gsi(irq);
--
1.7.4.1
_______________________________________________
Xen-devel mailing list
Xen-devel@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-devel
|
<Prev in Thread] |
Current Thread |
[Next in Thread>
|
- [Xen-devel] [PATCH] cleanup patches for arch/x86/pci/xen.c (Xen PCI) for 3.1 (v1), Konrad Rzeszutek Wilk
- [Xen-devel] [PATCH 08/10] xen/pci: Retire unnecessary #ifdef CONFIG_ACPI,
Konrad Rzeszutek Wilk <=
- [Xen-devel] [PATCH 03/10] xen/pci: Provide #ifdef CONFIG_ACPI to easy code squashing., Konrad Rzeszutek Wilk
- [Xen-devel] [PATCH 05/10] xen/pci: Use the xen_register_pirq for HVM and initial domain users, Konrad Rzeszutek Wilk
- [Xen-devel] [PATCH 01/10] xen/pci: Shuffle code around., Konrad Rzeszutek Wilk
- [Xen-devel] [PATCH 10/10] xen/pci: Use 'acpi_gsi_to_irq' value unconditionally., Konrad Rzeszutek Wilk
- [Xen-devel] [PATCH 07/10] xen/pci: Move the allocation of IRQs when there are no IOAPIC's to the end, Konrad Rzeszutek Wilk
- [Xen-devel] [PATCH 02/10] xen/pci: Update comments and fix empty spaces., Konrad Rzeszutek Wilk
- [Xen-devel] [PATCH 04/10] xen/pci: In xen_register_pirq bind the GSI to the IRQ after the hypercall., Konrad Rzeszutek Wilk
- [Xen-devel] [PATCH 09/10] xen/pci: Remove 'xen_allocate_pirq_gsi'., Konrad Rzeszutek Wilk
- [Xen-devel] [PATCH 06/10] xen/pci: Squash pci_xen_initial_domain and xen_setup_pirqs together., Konrad Rzeszutek Wilk
|
|
|
|
|