diff mbox series

schedule: fix a comment missprint

Message ID 1563950358-8988-1-git-send-email-andrii.anisov@gmail.com (mailing list archive)
State New, archived
Headers show
Series schedule: fix a comment missprint | expand

Commit Message

Andrii Anisov July 24, 2019, 6:39 a.m. UTC
From: Andrii Anisov <andrii_anisov@epam.com>

Fix the comment misprint, so it refers to the exact function name.

Signed-off-by: Andrii Anisov <andrii_anisov@epam.com>
---
 xen/common/schedule.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Dario Faggioli July 24, 2019, 1:25 p.m. UTC | #1
On Wed, 2019-07-24 at 09:39 +0300, Andrii Anisov wrote:
> From: Andrii Anisov <andrii_anisov@epam.com>
> 
> Fix the comment misprint, so it refers to the exact function name.
> 
> Signed-off-by: Andrii Anisov <andrii_anisov@epam.com>
>
Acked-by: Dario Faggioli <dfaggioli@suse.com>

In case it's worth a commit...

Thanks and Regards
diff mbox series

Patch

diff --git a/xen/common/schedule.c b/xen/common/schedule.c
index 9e16c16..8b78293 100644
--- a/xen/common/schedule.c
+++ b/xen/common/schedule.c
@@ -1593,7 +1593,7 @@  static int cpu_schedule_up(unsigned int cpu)
     init_timer(&sd->s_timer, s_timer_fn, NULL, cpu);
     atomic_set(&sd->urgent_count, 0);
 
-    /* Boot CPU is dealt with later in schedule_init(). */
+    /* Boot CPU is dealt with later in scheduler_init(). */
     if ( cpu == 0 )
         return 0;