]> git.proxmox.com Git - qemu.git/blobdiff - target-sh4/translate.c
Rename cpu_reset() to cpu_state_reset()
[qemu.git] / target-sh4 / translate.c
index dd0ee4be93af8df8d879f3b55d086af450a24acb..c385de8b84002d3bf64cc849e1c44f7b8a394311 100644 (file)
@@ -178,7 +178,7 @@ void cpu_dump_state(CPUState * env, FILE * f,
     }
 }
 
-void cpu_reset(CPUSH4State * env)
+void cpu_state_reset(CPUSH4State *env)
 {
     if (qemu_loglevel_mask(CPU_LOG_RESET)) {
         qemu_log("CPU Reset (CPU %d)\n", env->cpu_index);
@@ -279,7 +279,7 @@ CPUSH4State *cpu_sh4_init(const char *cpu_model)
     env->movcal_backup_tail = &(env->movcal_backup);
     sh4_translate_init();
     env->cpu_model_str = cpu_model;
-    cpu_reset(env);
+    cpu_state_reset(env);
     cpu_register(env, def);
     qemu_init_vcpu(env);
     return env;