target-unicore32: Make uc32_cpu_init() return UniCore32CPU

This way, the cpu_init() function in target-unicore32 will follow the
same pattern used on all other architectures.

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
Eduardo Habkost 2015-02-26 17:37:46 -03:00 committed by Andreas Färber
parent 6e8e265199
commit 41979669ab
2 changed files with 14 additions and 10 deletions

View file

@ -25,15 +25,9 @@
#define DPRINTF(fmt, ...) do {} while (0)
#endif
CPUUniCore32State *uc32_cpu_init(const char *cpu_model)
UniCore32CPU *uc32_cpu_init(const char *cpu_model)
{
UniCore32CPU *cpu;
cpu = UNICORE32_CPU(cpu_generic_init(TYPE_UNICORE32_CPU, cpu_model));
if (cpu == NULL) {
return NULL;
}
return &cpu->env;
return UNICORE32_CPU(cpu_generic_init(TYPE_UNICORE32_CPU, cpu_model));
}
uint32_t HELPER(clo)(uint32_t x)