diff options
author | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-19 02:38:22 +0000 |
---|---|---|
committer | pbrook <pbrook@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-11-19 02:38:22 +0000 |
commit | 79b0241756f097c76301ce5f9b9aa7454bc04e80 (patch) | |
tree | d0e3d0ddb00e4173e19d9f00f2de9b1bc9fb5efc /hw/stellaris.c | |
parent | c8623f2e37ebbdde8bc6213540ebe5b6f1c6747a (diff) |
Fix typo in error message.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3703 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/stellaris.c')
-rw-r--r-- | hw/stellaris.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/stellaris.c b/hw/stellaris.c index 3dbb2ced62..b7a0374527 100644 --- a/hw/stellaris.c +++ b/hw/stellaris.c @@ -443,7 +443,7 @@ static uint32_t ssys_read(void *opaque, target_phys_addr_t offset) case 0x160: /* LDOARST */ return s->ldoarst; default: - cpu_abort(cpu_single_env, "gptm_read: Bad offset 0x%x\n", (int)offset); + cpu_abort(cpu_single_env, "ssys_read: Bad offset 0x%x\n", (int)offset); return 0; } } @@ -516,7 +516,7 @@ static void ssys_write(void *opaque, target_phys_addr_t offset, uint32_t value) s->ldoarst = value; break; default: - cpu_abort(cpu_single_env, "gptm_write: Bad offset 0x%x\n", (int)offset); + cpu_abort(cpu_single_env, "ssys_write: Bad offset 0x%x\n", (int)offset); } ssys_update(s); } |