summaryrefslogtreecommitdiff
path: root/hw/stellaris_enet.c
diff options
context:
space:
mode:
authorPaul Brook <paul@codesourcery.com>2009-05-08 02:35:15 +0100
committerPaul Brook <paul@codesourcery.com>2009-05-08 02:35:15 +0100
commit2ac711791b2e4aabc5e4046b7428727828c705eb (patch)
treec4ed47028dee4949cc7eace9760a20d1759406e2 /hw/stellaris_enet.c
parente612a1f7256bb3546cf3e9ae6cad3997c4153663 (diff)
downloadqemu-2ac711791b2e4aabc5e4046b7428727828c705eb.tar.gz
Replace cpu_abort with hw_error
Signed-off-by: Paul Brook <paul@codesourcery.com>
Diffstat (limited to 'hw/stellaris_enet.c')
-rw-r--r--hw/stellaris_enet.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/hw/stellaris_enet.c b/hw/stellaris_enet.c
index a4c2011113..c9a0909e9b 100644
--- a/hw/stellaris_enet.c
+++ b/hw/stellaris_enet.c
@@ -190,8 +190,7 @@ static uint32_t stellaris_enet_read(void *opaque, target_phys_addr_t offset)
case 0x3c: /* Undocuented: Timestamp? */
return 0;
default:
- cpu_abort (cpu_single_env, "stellaris_enet_read: Bad offset %x\n",
- (int)offset);
+ hw_error("stellaris_enet_read: Bad offset %x\n", (int)offset);
return 0;
}
}
@@ -298,8 +297,7 @@ static void stellaris_enet_write(void *opaque, target_phys_addr_t offset,
/* Ignored. */
break;
default:
- cpu_abort (cpu_single_env, "stellaris_enet_write: Bad offset %x\n",
- (int)offset);
+ hw_error("stellaris_enet_write: Bad offset %x\n", (int)offset);
}
}