diff options
author | Richard Henderson <richard.henderson@linaro.org> | 2021-03-09 17:22:23 -0600 |
---|---|---|
committer | Richard Henderson <richard.henderson@linaro.org> | 2021-06-11 09:26:28 -0700 |
commit | 7109ef15c51d2a948f88764e4a4fe0666c4c91db (patch) | |
tree | d6641f5e36d290e13778610a5d4ff3de7d5043c6 /accel/tcg | |
parent | c46184a90a5a0209960b7c0813aff4feb1e373e1 (diff) | |
download | qemu-7109ef15c51d2a948f88764e4a4fe0666c4c91db.zip qemu-7109ef15c51d2a948f88764e4a4fe0666c4c91db.tar.gz qemu-7109ef15c51d2a948f88764e4a4fe0666c4c91db.tar.bz2 |
accel/tcg: Rename tcg_init to tcg_init_machine
We shortly want to use tcg_init for something else.
Since the hook is called init_machine, match that.
Reviewed-by: Luis Pires <luis.pires@eldorado.org.br>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'accel/tcg')
-rw-r--r-- | accel/tcg/tcg-all.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/accel/tcg/tcg-all.c b/accel/tcg/tcg-all.c index f132033..30d81ff 100644 --- a/accel/tcg/tcg-all.c +++ b/accel/tcg/tcg-all.c @@ -105,7 +105,7 @@ static void tcg_accel_instance_init(Object *obj) bool mttcg_enabled; -static int tcg_init(MachineState *ms) +static int tcg_init_machine(MachineState *ms) { TCGState *s = TCG_STATE(current_accel()); @@ -189,7 +189,7 @@ static void tcg_accel_class_init(ObjectClass *oc, void *data) { AccelClass *ac = ACCEL_CLASS(oc); ac->name = "tcg"; - ac->init_machine = tcg_init; + ac->init_machine = tcg_init_machine; ac->allowed = &tcg_allowed; object_class_property_add_str(oc, "thread", |