[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH 6/7] pseries: Remove PCI device from PCI host bridge c
From: |
David Gibson |
Subject: |
[Qemu-ppc] [PATCH 6/7] pseries: Remove PCI device from PCI host bridge code |
Date: |
Tue, 28 Feb 2012 14:18:12 +1100 |
From: Alexey Kardashevskiy <address@hidden>
The sPAPR PCI code defines a PCI device "spapr-pci-host-bridge-pci" which
is never used. This came over from the earlier bridge driver we used as
a template. Some other bridges appear on their own PCI bus as a device,
but that is not true of pSeries bridges, which are pure host to PCI with
no visible presence on the PCI side.
Signed-off-by: Alexey Kardashevskiy <address@hidden>
Signed-off-by: David Gibson <address@hidden>
---
hw/spapr_pci.c | 20 --------------------
1 files changed, 0 insertions(+), 20 deletions(-)
diff --git a/hw/spapr_pci.c b/hw/spapr_pci.c
index dafcd0e..b0254ee 100644
--- a/hw/spapr_pci.c
+++ b/hw/spapr_pci.c
@@ -183,25 +183,6 @@ static int spapr_phb_init(SysBusDevice *s)
return 0;
}
-static int spapr_main_pci_host_init(PCIDevice *d)
-{
- return 0;
-}
-
-static void spapr_main_pci_host_class_init(ObjectClass *klass, void *data)
-{
- PCIDeviceClass *k = PCI_DEVICE_CLASS(klass);
-
- k->init = spapr_main_pci_host_init;
-}
-
-static TypeInfo spapr_main_pci_host_info = {
- .name = "spapr-pci-host-bridge-pci",
- .parent = TYPE_PCI_DEVICE,
- .instance_size = sizeof(PCIDevice),
- .class_init = spapr_main_pci_host_class_init,
-};
-
static void spapr_phb_class_init(ObjectClass *klass, void *data)
{
SysBusDeviceClass *sdc = SYS_BUS_DEVICE_CLASS(klass);
@@ -219,7 +200,6 @@ static TypeInfo spapr_phb_info = {
static void spapr_register_types(void)
{
type_register_static(&spapr_phb_info);
- type_register_static(&spapr_main_pci_host_info);
}
type_init(spapr_register_types)
--
1.7.9
- [Qemu-ppc] [0/7] pseries and Power updates, David Gibson, 2012/02/27
- [Qemu-ppc] [PATCH 1/7] pseries: Don't try to munmap() a malloc()ed TCE table, David Gibson, 2012/02/27
- [Qemu-ppc] [PATCH 6/7] pseries: Remove PCI device from PCI host bridge code,
David Gibson <=
- [Qemu-ppc] [PATCH 2/7] PPC64: Add support for ldbrx and stdbrx instructions, David Gibson, 2012/02/27
- [Qemu-ppc] [PATCH 5/7] pseries: Remove unused constant from PCI code, David Gibson, 2012/02/27
- [Qemu-ppc] [PATCH 3/7] pseries: Add support for level interrupts to XICS, David Gibson, 2012/02/27
- [Qemu-ppc] [PATCH 4/7] pseries: Update SLOF firmware image, David Gibson, 2012/02/27
- [Qemu-ppc] [PATCH 7/7] pseries: Configure PCI bridge using properties, David Gibson, 2012/02/27