fix: renaming went wrong

Fixing the name of function:
- From: ffa_cpu_cycles_init_schedule_mode_ffa_runeld_prepare
- To: ffa_cpu_cycles_init_schedule_mode_ffa_run

Signed-off-by: J-Alves <joao.alves@arm.com>
Change-Id: I95301dd351a818623d0778253c26ac08868e6054
diff --git a/src/api.c b/src/api.c
index 47df0ab..d4f5993 100644
--- a/src/api.c
+++ b/src/api.c
@@ -1385,8 +1385,8 @@
 		goto out;
 	}
 
-	ffa_cpu_cycles_init_schedule_mode_ffa_runeld_prepare(current_locked,
-							     vcpu_next_locked);
+	ffa_cpu_cycles_init_schedule_mode_ffa_run(current_locked,
+						  vcpu_next_locked);
 
 	timer_migrate_to_other_cpu(current_locked.vcpu->cpu, vcpu_next_locked);
 	vcpu->cpu = current_locked.vcpu->cpu;
diff --git a/src/arch/fake/hypervisor/ffa.c b/src/arch/fake/hypervisor/ffa.c
index ea4fbd6..b01e967 100644
--- a/src/arch/fake/hypervisor/ffa.c
+++ b/src/arch/fake/hypervisor/ffa.c
@@ -423,7 +423,7 @@
 	return true;
 }
 
-void ffa_cpu_cycles_init_schedule_mode_ffa_runeld_prepare(
+void ffa_cpu_cycles_init_schedule_mode_ffa_run(
 	struct vcpu_locked current_locked, struct vcpu_locked target_locked)
 {
 	/* Scheduling mode not supported in the Hypervisor/VMs. */
diff --git a/src/ffa/absent.c b/src/ffa/absent.c
index 79090fc..8258f17 100644
--- a/src/ffa/absent.c
+++ b/src/ffa/absent.c
@@ -448,7 +448,7 @@
 	return true;
 }
 
-void ffa_cpu_cycles_init_schedule_mode_ffa_runeld_prepare(
+void ffa_cpu_cycles_init_schedule_mode_ffa_run(
 	struct vcpu_locked current_locked, struct vcpu_locked target_locked)
 {
 	(void)current_locked;
diff --git a/src/ffa/hypervisor/cpu_cycles.c b/src/ffa/hypervisor/cpu_cycles.c
index f2a9251..4496e6b 100644
--- a/src/ffa/hypervisor/cpu_cycles.c
+++ b/src/ffa/hypervisor/cpu_cycles.c
@@ -94,7 +94,7 @@
 	}
 }
 
-void ffa_cpu_cycles_init_schedule_mode_ffa_runeld_prepare(
+void ffa_cpu_cycles_init_schedule_mode_ffa_run(
 	struct vcpu_locked current_locked, struct vcpu_locked target_locked)
 {
 	/* Scheduling mode not supported in the Hypervisor/VMs. */
diff --git a/src/ffa/spmc/cpu_cycles.c b/src/ffa/spmc/cpu_cycles.c
index 645a8e8..1b319c8 100644
--- a/src/ffa/spmc/cpu_cycles.c
+++ b/src/ffa/spmc/cpu_cycles.c
@@ -458,7 +458,7 @@
  * Initialize the scheduling mode and/or Partition Runtime model of the target
  * SP upon being resumed by an FFA_RUN ABI.
  */
-void ffa_cpu_cycles_init_schedule_mode_ffa_runeld_prepare(
+void ffa_cpu_cycles_init_schedule_mode_ffa_run(
 	struct vcpu_locked current_locked, struct vcpu_locked target_locked)
 {
 	struct vcpu *vcpu = target_locked.vcpu;