diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2018-03-22 16:18:40 +1100 |
---|---|---|
committer | David Gibson <david@gibson.dropbear.id.au> | 2018-04-27 18:05:22 +1000 |
commit | 644a2c99a90b95957fd56fc3b9f8908ac9e90702 (patch) | |
tree | 3015a23d49e59b3a724a7986fd903b0169722e5b /include/hw | |
parent | 197600ecc4f81b9be5e233d8a1cbf42a48cdd371 (diff) | |
download | qemu-644a2c99a90b95957fd56fc3b9f8908ac9e90702.zip qemu-644a2c99a90b95957fd56fc3b9f8908ac9e90702.tar.gz qemu-644a2c99a90b95957fd56fc3b9f8908ac9e90702.tar.bz2 |
target/ppc: Pass cpu instead of env to ppc_create_page_sizes_prop()
As a rule we prefer to pass PowerPCCPU instead of CPUPPCState, and this
change will make some things simpler later on.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Greg Kurz <groug@kaod.org>
Reviewed-by: Cédric Le Goater <clg@kaod.org>
Diffstat (limited to 'include/hw')
-rw-r--r-- | include/hw/ppc/fdt.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/ppc/fdt.h b/include/hw/ppc/fdt.h index bd5b0a8..a8cd850 100644 --- a/include/hw/ppc/fdt.h +++ b/include/hw/ppc/fdt.h @@ -23,7 +23,7 @@ } \ } while (0) -size_t ppc_create_page_sizes_prop(CPUPPCState *env, uint32_t *prop, +size_t ppc_create_page_sizes_prop(PowerPCCPU *cpu, uint32_t *prop, size_t maxsize); #endif /* PPC_FDT_H */ |