143e6db6fa
Rename qpci_init_pc in qpci_pc_new and qpci_init_spapr in qpci_spapr_new, since these function actually allocate a new pci struct and initialize it (compare to object_new and object_initialize). Changed QOSOps field name from qpci_init to qpci_new. Signed-off-by: Emanuele Giuseppe Esposito <e.emanuelegiuseppe@gmail.com> Reviewed-by: Laurent Vivier <lvivier@redhat.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
18 lines
394 B
C
18 lines
394 B
C
/*
|
|
* libqos PCI bindings for SPAPR
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*/
|
|
|
|
#ifndef LIBQOS_PCI_SPAPR_H
|
|
#define LIBQOS_PCI_SPAPR_H
|
|
|
|
#include "libqos/malloc.h"
|
|
#include "libqos/pci.h"
|
|
|
|
QPCIBus *qpci_new_spapr(QTestState *qts, QGuestAllocator *alloc);
|
|
void qpci_free_spapr(QPCIBus *bus);
|
|
|
|
#endif
|