diff options
| author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-03-30 16:41:55 +0000 |
|---|---|---|
| committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-03-30 16:41:55 +0000 |
| commit | e69f67b6d58f366ffaa83a0973948edd1f74b370 (patch) | |
| tree | fff6a73b994be70ec420cd5c8aad739b2597f774 | |
| parent | a42bd6ccdfefbadfc34d381c42d64a78f532df63 (diff) | |
| download | focaccia-qemu-e69f67b6d58f366ffaa83a0973948edd1f74b370.tar.gz focaccia-qemu-e69f67b6d58f366ffaa83a0973948edd1f74b370.zip | |
Fix build failure.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2545 c046a42c-6fe2-441c-8c8c-71466251a162
| -rw-r--r-- | vl.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/vl.h b/vl.h index 2bcf81ada2..5e2d8e857f 100644 --- a/vl.h +++ b/vl.h @@ -859,9 +859,11 @@ enum { OPENPIC_EVT_DEBUG, /* Inconditional debug event */ OPENPIC_EVT_RESET, /* Core reset event */ }; +struct CPUPPCState; void openpic_set_irq(void *opaque, int n_IRQ, int level); openpic_t *openpic_init (PCIBus *bus, SetIRQFunc *set_irq, - int *pmem_index, int nb_cpus, CPUPPCState **envp); + int *pmem_index, int nb_cpus, + struct CPUPPCState **envp); /* heathrow_pic.c */ typedef struct HeathrowPICS HeathrowPICS; |