diff options
author | malc <av1474@comtv.ru> | 2009-10-01 22:20:47 +0400 |
---|---|---|
committer | malc <av1474@comtv.ru> | 2009-10-01 22:45:02 +0400 |
commit | 5be86926c66310373ee0f25efc9e151f2390201e (patch) | |
tree | f9e39633853e35b49fc4465337cc196b9650866e /hw/arm_boot.c | |
parent | ac0d47ecf08b101f8b0b2acd910964aaa719eed2 (diff) | |
download | qemu-5be86926c66310373ee0f25efc9e151f2390201e.tar.gz qemu-5be86926c66310373ee0f25efc9e151f2390201e.tar.bz2 qemu-5be86926c66310373ee0f25efc9e151f2390201e.zip |
Get rid of _t suffix
Some not so obvious bits, slirp and Xen were left alone for the time
being.
Signed-off-by: malc <av1474@comtv.ru>
Diffstat (limited to 'hw/arm_boot.c')
-rw-r--r-- | hw/arm_boot.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hw/arm_boot.c b/hw/arm_boot.c index a8a38c5a36..ef5d2083b5 100644 --- a/hw/arm_boot.c +++ b/hw/arm_boot.c @@ -61,9 +61,9 @@ static void main_cpu_reset(void *opaque) } while (0) static void set_kernel_args(struct arm_boot_info *info, - int initrd_size, target_phys_addr_t base) + int initrd_size, a_target_phys_addr base) { - target_phys_addr_t p; + a_target_phys_addr p; p = base + KERNEL_ARGS_ADDR; /* ATAG_CORE */ @@ -114,9 +114,9 @@ static void set_kernel_args(struct arm_boot_info *info, } static void set_kernel_args_old(struct arm_boot_info *info, - int initrd_size, target_phys_addr_t base) + int initrd_size, a_target_phys_addr base) { - target_phys_addr_t p; + a_target_phys_addr p; const char *s; @@ -193,7 +193,7 @@ void arm_load_kernel(CPUState *env, struct arm_boot_info *info) int n; int is_linux = 0; uint64_t elf_entry; - target_phys_addr_t entry; + a_target_phys_addr entry; int big_endian; /* Load the kernel. */ |