diff options
author | edgar_igl | 2008-06-30 10:59:49 +0200 |
---|---|---|
committer | edgar_igl | 2008-06-30 10:59:49 +0200 |
commit | d297f464d386f85eda77263d81c598c7aaff46d9 (patch) | |
tree | c37dea3e30f126183eb6a07440a7989fdb32b111 /hw/etraxfs_timer.c | |
parent | Suppress bogus compiler warnings. (diff) | |
download | qemu-d297f464d386f85eda77263d81c598c7aaff46d9.tar.gz qemu-d297f464d386f85eda77263d81c598c7aaff46d9.tar.xz qemu-d297f464d386f85eda77263d81c598c7aaff46d9.zip |
Avoid CRIS related warnings by Jan Kiszka.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4804 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/etraxfs_timer.c')
-rw-r--r-- | hw/etraxfs_timer.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hw/etraxfs_timer.c b/hw/etraxfs_timer.c index e996c57f6a..789992a2dd 100644 --- a/hw/etraxfs_timer.c +++ b/hw/etraxfs_timer.c @@ -80,8 +80,8 @@ static uint32_t timer_rinvalid (void *opaque, target_phys_addr_t addr) { struct fs_timer_t *t = opaque; CPUState *env = t->env; - cpu_abort(env, "Unsupported short access. reg=%x pc=%x.\n", - addr, env->pc); + cpu_abort(env, "Unsupported short access. reg=" TARGET_FMT_plx + " pc=%x.\n", addr, env->pc); return 0; } @@ -120,8 +120,8 @@ timer_winvalid (void *opaque, target_phys_addr_t addr, uint32_t value) { struct fs_timer_t *t = opaque; CPUState *env = t->env; - cpu_abort(env, "Unsupported short access. reg=%x pc=%x.\n", - addr, env->pc); + cpu_abort(env, "Unsupported short access. reg=" TARGET_FMT_plx + " pc=%x.\n", addr, env->pc); } #define TIMER_SLOWDOWN 1 @@ -309,7 +309,7 @@ timer_writel (void *opaque, target_phys_addr_t addr, uint32_t value) t->rw_ack_intr = 0; break; default: - printf ("%s %x %x pc=%x\n", + printf ("%s " TARGET_FMT_plx " %x pc=%x\n", __func__, addr, value, env->pc); break; } |