From 71db710f7ee00cf324153bbc203e6dad8c99850b Mon Sep 17 00:00:00 2001 From: blueswir1 Date: Fri, 8 Jun 2007 16:45:23 +0000 Subject: Fix incorrect target_ulong use in hw devices git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2962 c046a42c-6fe2-441c-8c8c-71466251a162 --- hw/ds1225y.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'hw/ds1225y.c') diff --git a/hw/ds1225y.c b/hw/ds1225y.c index 48d6636..7851096 100644 --- a/hw/ds1225y.c +++ b/hw/ds1225y.c @@ -33,7 +33,7 @@ typedef enum struct ds1225y_t { - target_ulong mem_base; + target_phys_addr_t mem_base; uint32_t capacity; const char *filename; QEMUFile *file; @@ -99,7 +99,7 @@ static CPUWriteMemoryFunc *nvram_none[] = { }; /* Initialisation routine */ -ds1225y_t *ds1225y_init(target_ulong mem_base, const char *filename) +ds1225y_t *ds1225y_init(target_phys_addr_t mem_base, const char *filename) { ds1225y_t *s; int mem_index1, mem_index2; -- cgit v1.1