mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-10 02:54:58 -06:00
module: rename module_load_one to module_load
Signed-off-by: Claudio Fontana <cfontana@suse.de> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20220929093035.4231-3-cfontana@suse.de> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
This commit is contained in:
parent
2106106d80
commit
dbc0e80553
9 changed files with 24 additions and 24 deletions
|
@ -526,7 +526,7 @@ void object_initialize(void *data, size_t size, const char *typename)
|
|||
|
||||
#ifdef CONFIG_MODULES
|
||||
if (!type) {
|
||||
module_load_qom_one(typename);
|
||||
module_load_qom(typename);
|
||||
type = type_get_by_name(typename);
|
||||
}
|
||||
#endif
|
||||
|
@ -1033,7 +1033,7 @@ ObjectClass *module_object_class_by_name(const char *typename)
|
|||
oc = object_class_by_name(typename);
|
||||
#ifdef CONFIG_MODULES
|
||||
if (!oc) {
|
||||
module_load_qom_one(typename);
|
||||
module_load_qom(typename);
|
||||
oc = object_class_by_name(typename);
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue