diff options
author | Juan Quintela <quintela@redhat.com> | 2010-12-03 01:54:21 +0100 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-04-22 14:41:43 -0500 |
commit | 8a11f43bd5d42462c7d6a9321cefa59e78c69d51 (patch) | |
tree | 0551748667f2809ee84f0f1c92df7cd8c8b08a85 /hw | |
parent | 7b9a3d86c1c5ed508ab07b536f44a308732b9069 (diff) |
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')
-rw-r--r-- | hw/mac_nvram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/mac_nvram.c b/hw/mac_nvram.c index c2a2fc21e..64f0192b2 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; |