mirror of https://github.com/xqemu/xqemu.git
Better fix for OpenPIC: should not depend on PowerPC.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2552 c046a42c-6fe2-441c-8c8c-71466251a162
This commit is contained in:
parent
aafd8139ed
commit
05a8096f2d
|
@ -965,7 +965,7 @@ static void openpic_map(PCIDevice *pci_dev, int region_num,
|
||||||
}
|
}
|
||||||
|
|
||||||
openpic_t *openpic_init (PCIBus *bus, SetIRQFunc *set_irq,
|
openpic_t *openpic_init (PCIBus *bus, SetIRQFunc *set_irq,
|
||||||
int *pmem_index, int nb_cpus, CPUPPCState **envp)
|
int *pmem_index, int nb_cpus, CPUState **envp)
|
||||||
{
|
{
|
||||||
openpic_t *opp;
|
openpic_t *opp;
|
||||||
uint8_t *pci_conf;
|
uint8_t *pci_conf;
|
||||||
|
|
3
vl.h
3
vl.h
|
@ -859,11 +859,10 @@ enum {
|
||||||
OPENPIC_EVT_DEBUG, /* Inconditional debug event */
|
OPENPIC_EVT_DEBUG, /* Inconditional debug event */
|
||||||
OPENPIC_EVT_RESET, /* Core reset event */
|
OPENPIC_EVT_RESET, /* Core reset event */
|
||||||
};
|
};
|
||||||
struct CPUPPCState;
|
|
||||||
void openpic_set_irq(void *opaque, int n_IRQ, int level);
|
void openpic_set_irq(void *opaque, int n_IRQ, int level);
|
||||||
openpic_t *openpic_init (PCIBus *bus, SetIRQFunc *set_irq,
|
openpic_t *openpic_init (PCIBus *bus, SetIRQFunc *set_irq,
|
||||||
int *pmem_index, int nb_cpus,
|
int *pmem_index, int nb_cpus,
|
||||||
struct CPUPPCState **envp);
|
struct CPUState **envp);
|
||||||
|
|
||||||
/* heathrow_pic.c */
|
/* heathrow_pic.c */
|
||||||
typedef struct HeathrowPICS HeathrowPICS;
|
typedef struct HeathrowPICS HeathrowPICS;
|
||||||
|
|
Loading…
Reference in New Issue