diff options
author | Blue Swirl <blauwirbel@gmail.com> | 2010-02-07 08:05:03 +0000 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2010-02-07 08:05:03 +0000 |
commit | 43a347045768ce843987649bafc5bc1dd18d4d0f (patch) | |
tree | 34e6917f0518bab55d3d821ad852eb09b0e8ada9 /hw/ppc_prep.c | |
parent | 1cd62ae9f8ed624263e4779d2c71908aa41137fb (diff) | |
download | qemu-43a347045768ce843987649bafc5bc1dd18d4d0f.tar.gz qemu-43a347045768ce843987649bafc5bc1dd18d4d0f.tar.bz2 qemu-43a347045768ce843987649bafc5bc1dd18d4d0f.zip |
m48t59: don't use reserved _t suffix
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
Diffstat (limited to 'hw/ppc_prep.c')
-rw-r--r-- | hw/ppc_prep.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/ppc_prep.c b/hw/ppc_prep.c index eb758f2dab..a5e25b57fd 100644 --- a/hw/ppc_prep.c +++ b/hw/ppc_prep.c @@ -277,7 +277,7 @@ static CPUReadMemoryFunc * const PPC_XCSR_read[] = { /* Fake super-io ports for PREP platform (Intel 82378ZB) */ typedef struct sysctrl_t { qemu_irq reset_irq; - m48t59_t *nvram; + M48t59State *nvram; uint8_t state; uint8_t syscontrol; uint8_t fake_io[2]; @@ -557,7 +557,7 @@ static void ppc_prep_init (ram_addr_t ram_size, CPUState *env = NULL, *envs[MAX_CPUS]; char *filename; nvram_t nvram; - m48t59_t *m48t59; + M48t59State *m48t59; int PPC_io_memory; int linux_boot, i, nb_nics1, bios_size; ram_addr_t ram_offset, bios_offset; |