diff options
author | Paul Brook <paul@codesourcery.com> | 2009-05-08 02:35:15 +0100 |
---|---|---|
committer | Paul Brook <paul@codesourcery.com> | 2009-05-08 02:35:15 +0100 |
commit | 2ac711791b2e4aabc5e4046b7428727828c705eb (patch) | |
tree | c4ed47028dee4949cc7eace9760a20d1759406e2 /hw/pl190.c | |
parent | e612a1f7256bb3546cf3e9ae6cad3997c4153663 (diff) |
Replace cpu_abort with hw_error
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw/pl190.c')
-rw-r--r-- | hw/pl190.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/hw/pl190.c b/hw/pl190.c index b5863f78f8..d7eb695353 100644 --- a/hw/pl190.c +++ b/hw/pl190.c @@ -137,7 +137,7 @@ static uint32_t pl190_read(void *opaque, target_phys_addr_t offset) case 13: /* DEFVECTADDR */ return s->vect_addr[16]; default: - cpu_abort (cpu_single_env, "pl190_read: Bad offset %x\n", (int)offset); + hw_error("pl190_read: Bad offset %x\n", (int)offset); return 0; } } @@ -190,11 +190,12 @@ static void pl190_write(void *opaque, target_phys_addr_t offset, uint32_t val) s->default_addr = val; break; case 0xc0: /* ITCR */ - if (val) - cpu_abort(cpu_single_env, "pl190: Test mode not implemented\n"); + if (val) { + hw_error("pl190: Test mode not implemented\n"); + } break; default: - cpu_abort(cpu_single_env, "pl190_write: Bad offset %x\n", (int)offset); + hw_error("pl190_write: Bad offset %x\n", (int)offset); return; } pl190_update(s); |