mvp_init() doesn't require any CPU definition (beside the
information accessible via CPUMIPSState). Remove the unused
argument.
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <
20201204222622.
2743175-2-f4bug@amsat.org>
mmu_init(env, env->cpu_model);
#endif
fpu_init(env, env->cpu_model);
- mvp_init(env, env->cpu_model);
+ mvp_init(env);
}
bool cpu_type_supports_cps_smp(const char *cpu_type)
memcpy(&env->active_fpu, &env->fpus[0], sizeof(env->active_fpu));
}
-static void mvp_init (CPUMIPSState *env, const mips_def_t *def)
+static void mvp_init(CPUMIPSState *env)
{
env->mvp = g_malloc0(sizeof(CPUMIPSMVPContext));