summaryrefslogtreecommitdiff
path: root/hw/mac_nvram.c
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2010-12-03 01:54:21 +0100
committerAnthony Liguori <aliguori@us.ibm.com>2011-04-22 14:41:43 -0500
commit8a11f43bd5d42462c7d6a9321cefa59e78c69d51 (patch)
tree0551748667f2809ee84f0f1c92df7cd8c8b08a85 /hw/mac_nvram.c
parent7b9a3d86c1c5ed508ab07b536f44a308732b9069 (diff)
downloadqemu-8a11f43bd5d42462c7d6a9321cefa59e78c69d51.tar.gz
mac_nvram: size is a size, no need to be a target dependent type
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'hw/mac_nvram.c')
-rw-r--r--hw/mac_nvram.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/mac_nvram.c b/hw/mac_nvram.c
index c2a2fc21e4..64f0192b22 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;