diff options
author | Peter Maydell <peter.maydell@linaro.org> | 2012-06-25 16:52:22 +0100 |
---|---|---|
committer | Blue Swirl <blauwirbel@gmail.com> | 2012-07-14 10:36:24 +0000 |
commit | cdb30d446f6a643c48c4a6a8ecc5d9eb7c6d6647 (patch) | |
tree | bbcb24e27e205aa2d51f250e4ee6d3f5ff46aa9c | |
parent | 1e9be4b4fed08804e645e6465d38cdb686ebe9de (diff) | |
download | qemu-cdb30d446f6a643c48c4a6a8ecc5d9eb7c6d6647.zip qemu-cdb30d446f6a643c48c4a6a8ecc5d9eb7c6d6647.tar.gz qemu-cdb30d446f6a643c48c4a6a8ecc5d9eb7c6d6647.tar.bz2 |
hw/omap.h: Use TARGET_PRIxPHYS to define OMAP_FMT_plx
Use the new TARGET_PRIxPHYS macro to avoid the need to define an
OMAP_FMT_plx macro whose expansion depends directly on
TARGET_PHYS_ADDR_BITS.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Acked-by: Andreas Färber <afaerber@suse.de>
Signed-off-by: Blue Swirl <blauwirbel@gmail.com>
-rw-r--r-- | hw/omap.h | 8 |
1 files changed, 1 insertions, 7 deletions
@@ -942,13 +942,7 @@ struct omap_mpu_state_s *omap2420_mpu_init(MemoryRegion *sysmem, unsigned long sdram_size, const char *core); -# if TARGET_PHYS_ADDR_BITS == 32 -# define OMAP_FMT_plx "%#08x" -# elif TARGET_PHYS_ADDR_BITS == 64 -# define OMAP_FMT_plx "%#08" PRIx64 -# else -# error TARGET_PHYS_ADDR_BITS undefined -# endif +#define OMAP_FMT_plx "%#08" TARGET_PRIxPHYS uint32_t omap_badwidth_read8(void *opaque, target_phys_addr_t addr); void omap_badwidth_write8(void *opaque, target_phys_addr_t addr, |