diff --git a/examples/hello/hello_main.c b/examples/hello/hello_main.c index a533eff35..953597aa2 100644 --- a/examples/hello/hello_main.c +++ b/examples/hello/hello_main.c @@ -40,10 +40,6 @@ #include #include -#ifdef CONFIG_SMP -# include -#endif - /**************************************************************************** * Public Functions ****************************************************************************/ @@ -54,12 +50,6 @@ int main(int argc, FAR char *argv[]) { -#ifdef CONFIG_SMP - uint32_t cpu = up_cpu_index(); - - printf("Hello, World from CPU%d !!\n", cpu); -#else printf("Hello, World!!\n"); -#endif return 0; }