]> git.proxmox.com Git - qemu.git/commitdiff
target-arm: use type_register() instead of type_register_static()
authorEduardo Habkost <ehabkost@redhat.com>
Fri, 11 Jan 2013 15:21:22 +0000 (15:21 +0000)
committerPeter Maydell <peter.maydell@linaro.org>
Fri, 11 Jan 2013 15:21:22 +0000 (15:21 +0000)
The type_register_static() interface is documented as:

  type_register_static:
  @info: The #TypeInfo of the new type.

  @info and all of the strings it points to should exist for the life
  time that the type is registered.

But cpu_register() uses a stack variable for the 'info' argument, so it
has to use type_register() instead of type_register_static().

Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
target-arm/cpu.c

index 17875ed0f0aef8cdb23df7648b323447ccba548f..94536bb0ccc3f109711b1a5d5fc476b023a46f10 100644 (file)
@@ -778,7 +778,7 @@ static void cpu_register(const ARMCPUInfo *info)
         .class_size = sizeof(ARMCPUClass),
     };
 
-    type_register_static(&type_info);
+    type_register(&type_info);
 }
 
 static const TypeInfo arm_cpu_type_info = {