diff options
Diffstat (limited to 'arch/ia64/pci/pci.c')
-rw-r--r-- | arch/ia64/pci/pci.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/ia64/pci/pci.c b/arch/ia64/pci/pci.c index 60532ab27346..de1474ff0bc5 100644 --- a/arch/ia64/pci/pci.c +++ b/arch/ia64/pci/pci.c | |||
@@ -15,6 +15,7 @@ | |||
15 | #include <linux/types.h> | 15 | #include <linux/types.h> |
16 | #include <linux/kernel.h> | 16 | #include <linux/kernel.h> |
17 | #include <linux/pci.h> | 17 | #include <linux/pci.h> |
18 | #include <linux/pci-acpi.h> | ||
18 | #include <linux/init.h> | 19 | #include <linux/init.h> |
19 | #include <linux/ioport.h> | 20 | #include <linux/ioport.h> |
20 | #include <linux/slab.h> | 21 | #include <linux/slab.h> |
@@ -458,6 +459,16 @@ void pcibios_fixup_bus(struct pci_bus *b) | |||
458 | platform_pci_fixup_bus(b); | 459 | platform_pci_fixup_bus(b); |
459 | } | 460 | } |
460 | 461 | ||
462 | void pcibios_add_bus(struct pci_bus *bus) | ||
463 | { | ||
464 | acpi_pci_add_bus(bus); | ||
465 | } | ||
466 | |||
467 | void pcibios_remove_bus(struct pci_bus *bus) | ||
468 | { | ||
469 | acpi_pci_remove_bus(bus); | ||
470 | } | ||
471 | |||
461 | void pcibios_set_master (struct pci_dev *dev) | 472 | void pcibios_set_master (struct pci_dev *dev) |
462 | { | 473 | { |
463 | /* No special bus mastering setup handling */ | 474 | /* No special bus mastering setup handling */ |