mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-05 20:35:44 +00:00
674b0a5784
hw/pci/pci_bridge.h and hw/cxl/cxl.h include each other. Fortunately, breaking the loop is merely a matter of deleting unnecessary includes from headers, and adding them back in places where they are now missing. Signed-off-by: Markus Armbruster <armbru@redhat.com> Message-Id: <20221222100330.380143-2-armbru@redhat.com> Reviewed-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
20 lines
515 B
C
20 lines
515 B
C
/* Alpha cores and system support chips. */
|
|
|
|
#ifndef HW_ALPHA_SYS_H
|
|
#define HW_ALPHA_SYS_H
|
|
|
|
#include "target/alpha/cpu-qom.h"
|
|
#include "hw/pci/pci.h"
|
|
#include "hw/boards.h"
|
|
#include "hw/intc/i8259.h"
|
|
|
|
|
|
PCIBus *typhoon_init(MemoryRegion *, qemu_irq *, qemu_irq *, AlphaCPU *[4],
|
|
pci_map_irq_fn, uint8_t devfn_min);
|
|
|
|
/* alpha_pci.c. */
|
|
extern const MemoryRegionOps alpha_pci_ignore_ops;
|
|
extern const MemoryRegionOps alpha_pci_conf1_ops;
|
|
extern const MemoryRegionOps alpha_pci_iack_ops;
|
|
|
|
#endif
|