From: Andreas Färber Date: Wed, 23 Jan 2013 10:10:14 +0000 (+0100) Subject: target-openrisc: Use type_register() instead of type_register_static() X-Git-Tag: v1.4.0-rc0~75^2~4 X-Git-Url: https://git.proxmox.com/?p=qemu.git;a=commitdiff_plain;h=a1ebd6ce3396954185bda6e94ada60c583f6cbea target-openrisc: 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. 918fd0839eeafc83bd4984364321a947d29041fe for arm. Signed-off-by: Andreas Färber --- diff --git a/target-openrisc/cpu.c b/target-openrisc/cpu.c index adc03ef77..54876d904 100644 --- a/target-openrisc/cpu.c +++ b/target-openrisc/cpu.c @@ -151,7 +151,7 @@ static void cpu_register(const OpenRISCCPUInfo *info) .class_size = sizeof(OpenRISCCPUClass), }; - type_register_static(&type_info); + type_register(&type_info); } static const TypeInfo openrisc_cpu_type_info = {