From: Juan Quintela Date: Fri, 3 Dec 2010 00:54:21 +0000 (+0100) Subject: mac_nvram: size is a size, no need to be a target dependent type X-Git-Tag: v0.15.0-rc0~378 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=8a11f43bd5d42462c7d6a9321cefa59e78c69d51;p=thirdparty%2Fqemu.git mac_nvram: size is a size, no need to be a target dependent type Signed-off-by: Juan Quintela --- diff --git a/hw/mac_nvram.c b/hw/mac_nvram.c index c2a2fc21e49..64f0192b226 100644 --- a/hw/mac_nvram.c +++ b/hw/mac_nvram.c @@ -38,7 +38,7 @@ #endif struct MacIONVRAMState { - target_phys_addr_t size; + uint32_t size; int mem_index; unsigned int it_shift; uint8_t *data;