From de885064d2ad0fbd727433d5edb49734cb8763e7 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Thu, 18 Feb 2016 14:56:17 -0600 Subject: [PATCH] SIM: Clean up some comments --- arch/sim/src/up_simsmp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/sim/src/up_simsmp.c b/arch/sim/src/up_simsmp.c index f60f2bf9fb..6ad52069e6 100644 --- a/arch/sim/src/up_simsmp.c +++ b/arch/sim/src/up_simsmp.c @@ -133,11 +133,11 @@ static void *sim_cpu0_trampoline(void *arg) return NULL; } - /* Give control to os_start */ + /* Give control to os_start() */ os_start(); - /* The os_start() should not return */ + /* os_start() should not return */ return NULL; }