mirror of https://github.com/xemu-project/xemu.git
target-m68k: Use type_register() instead of type_register_static()
According to its documentation, type_register_static()'s TypeInfo
argument should exist for the life type of the type.
Therefore use type_register() when registering the list of CPU subtypes.
No functional change with the current implementation.
Cf. 918fd0839e
for arm.
Signed-off-by: Andreas Färber <afaerber@suse.de>
This commit is contained in:
parent
87fb5811e6
commit
2dddbc2123
|
@ -162,7 +162,7 @@ static void register_cpu_type(const M68kCPUInfo *info)
|
|||
.instance_init = info->instance_init,
|
||||
};
|
||||
|
||||
type_register_static(&type_info);
|
||||
type_register(&type_info);
|
||||
}
|
||||
|
||||
static const TypeInfo m68k_cpu_type_info = {
|
||||
|
|
Loading…
Reference in New Issue