]> git.proxmox.com Git - qemu.git/commitdiff
target-unicore32: Use type_register() instead of type_register_static()
authorAndreas Färber <afaerber@suse.de>
Wed, 23 Jan 2013 11:01:00 +0000 (12:01 +0100)
committerAndreas Färber <afaerber@suse.de>
Mon, 28 Jan 2013 15:57:56 +0000 (16:57 +0100)
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. 918fd0839eeafc83bd4984364321a947d29041fe for arm.

Signed-off-by: Andreas Färber <afaerber@suse.de>
target-unicore32/cpu.c

index 6735b253c23f9cc656e3e724cd375284b23422d3..c120440653fad8bf3522a0108688dc5142405c9c 100644 (file)
@@ -111,7 +111,7 @@ static void uc32_register_cpu_type(const UniCore32CPUInfo *info)
         .instance_init = info->instance_init,
     };
 
-    type_register_static(&type_info);
+    type_register(&type_info);
 }
 
 static const TypeInfo uc32_cpu_type_info = {