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/tsc210x.c | |
parent | e612a1f7256bb3546cf3e9ae6cad3997c4153663 (diff) |
Replace cpu_abort with hw_error
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw/tsc210x.c')
-rw-r--r-- | hw/tsc210x.c | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/hw/tsc210x.c b/hw/tsc210x.c index 41d374fff2..55e1214128 100644 --- a/hw/tsc210x.c +++ b/hw/tsc210x.c @@ -893,7 +893,7 @@ static uint16_t tsc210x_read(struct tsc210x_state_s *s) ret = tsc2102_audio_register_read(s, s->offset); break; default: - cpu_abort(cpu_single_env, "tsc210x_read: wrong memory page\n"); + hw_error("tsc210x_read: wrong memory page\n"); } tsc210x_pin_update(s); @@ -930,8 +930,7 @@ static void tsc210x_write(struct tsc210x_state_s *s, uint16_t value) tsc2102_audio_register_write(s, s->offset, value); break; default: - cpu_abort(cpu_single_env, - "tsc210x_write: wrong memory page\n"); + hw_error("tsc210x_write: wrong memory page\n"); } tsc210x_pin_update(s); @@ -945,8 +944,7 @@ uint32_t tsc210x_txrx(void *opaque, uint32_t value, int len) uint32_t ret = 0; if (len != 16) - cpu_abort(cpu_single_env, "%s: FIXME: bad SPI word width %i\n", - __FUNCTION__, len); + hw_error("%s: FIXME: bad SPI word width %i\n", __FUNCTION__, len); /* TODO: sequential reads etc - how do we make sure the host doesn't * unintentionally read out a conversion result from a register while |