summaryrefslogtreecommitdiffstats
path: root/hw/arm/omap2.c
diff options
context:
space:
mode:
authorIgor Mammedov2017-09-13 18:04:54 +0200
committerEduardo Habkost2017-09-19 14:09:32 +0200
commit4482e05cbbb7e50e476f6a9500cf0b38913bd939 (patch)
treec2135cfd57c8f7fe0c50ddf19e43e98479383c08 /hw/arm/omap2.c
parentqom: cpus: split cpu_generic_init() on feature parsing and cpu creation parts (diff)
downloadqemu-4482e05cbbb7e50e476f6a9500cf0b38913bd939.tar.gz
qemu-4482e05cbbb7e50e476f6a9500cf0b38913bd939.tar.xz
qemu-4482e05cbbb7e50e476f6a9500cf0b38913bd939.zip
cpu: make cpu_generic_init() abort QEMU on error
Almost every user of cpu_generic_init() checks for returned NULL and then reports failure in a custom way and aborts process. Some users assume that call can't fail and don't check for failure, though they should have checked for it. In either cases cpu_generic_init() failure is fatal, so instead of checking for failure and reporting it various ways, make cpu_generic_init() report errors in consistent way and terminate QEMU on failure. Signed-off-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <1505318697-77161-3-git-send-email-imammedo@redhat.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'hw/arm/omap2.c')
-rw-r--r--hw/arm/omap2.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/hw/arm/omap2.c b/hw/arm/omap2.c
index ece25ae744..5821477950 100644
--- a/hw/arm/omap2.c
+++ b/hw/arm/omap2.c
@@ -2262,10 +2262,6 @@ struct omap_mpu_state_s *omap2420_mpu_init(MemoryRegion *sysmem,
/* Core */
s->mpu_model = omap2420;
s->cpu = ARM_CPU(cpu_generic_init(TYPE_ARM_CPU, core ?: "arm1136-r2"));
- if (s->cpu == NULL) {
- fprintf(stderr, "Unable to find CPU definition\n");
- exit(1);
- }
s->sdram_size = sdram_size;
s->sram_size = OMAP242X_SRAM_SIZE;