aboutsummaryrefslogtreecommitdiff
path: root/target/sh4
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2017-09-17 20:28:42 -0300
committerEduardo Habkost <ehabkost@redhat.com>2017-10-09 23:21:52 -0300
commit8301ea444abb49f7b7fb939b09c1e23b22977f30 (patch)
tree22dc7963464b3615aa96e96d6d873f1fb072c74d /target/sh4
parent530049bc1dcc24c1178a29d99ca08b6dd08413e0 (diff)
downloadqemu-8301ea444abb49f7b7fb939b09c1e23b22977f30.zip
qemu-8301ea444abb49f7b7fb939b09c1e23b22977f30.tar.gz
qemu-8301ea444abb49f7b7fb939b09c1e23b22977f30.tar.bz2
qom/cpu: move cpu_model null check to cpu_class_by_name()
and clean every implementation. Suggested-by: Eduardo Habkost <ehabkost@redhat.com> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20170917232842.14544-1-f4bug@amsat.org> Reviewed-by: Igor Mammedov <imammedo@redhat.com> Reviewed-by: Laurent Vivier <laurent@vivier.eu> Reviewed-by: Artyom Tarasenko <atar4qemu@gmail.com> Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'target/sh4')
-rw-r--r--target/sh4/cpu.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/target/sh4/cpu.c b/target/sh4/cpu.c
index 6ce7cba..252440e 100644
--- a/target/sh4/cpu.c
+++ b/target/sh4/cpu.c
@@ -133,9 +133,6 @@ static ObjectClass *superh_cpu_class_by_name(const char *cpu_model)
ObjectClass *oc;
GSList *list, *item;
- if (cpu_model == NULL) {
- return NULL;
- }
if (strcasecmp(cpu_model, "any") == 0) {
return object_class_by_name(TYPE_SH7750R_CPU);
}