From: Marek Vasut Date: Sat, 13 Jul 2024 13:19:20 +0000 (+0200) Subject: examples: Remove duplicate newlines X-Git-Url: http://git.dujemihanovic.xyz/?a=commitdiff_plain;h=73a48dc856b57aecee4ff69dd1325d1f3074405c;p=u-boot.git examples: Remove duplicate newlines Drop all duplicate newlines. No functional change. Signed-off-by: Marek Vasut --- diff --git a/examples/api/glue.c b/examples/api/glue.c index 08c21a8cb9..0aaa82bccb 100644 --- a/examples/api/glue.c +++ b/examples/api/glue.c @@ -153,7 +153,6 @@ unsigned long ub_get_timer(unsigned long base) return cur; } - /**************************************************************************** * * devices diff --git a/examples/standalone/sched.c b/examples/standalone/sched.c index d507163f6f..57ae67e1a5 100644 --- a/examples/standalone/sched.c +++ b/examples/standalone/sched.c @@ -21,7 +21,6 @@ * timer interrupts. */ - #define MAX_THREADS 8 #define CTX_SIZE 512 @@ -55,7 +54,6 @@ struct lthread { static volatile struct lthread lthreads[MAX_THREADS]; static volatile int current_tid = MASTER_THREAD; - static uchar dbg = 0; #define PDEBUG(fmt, args...) { \ @@ -162,7 +160,6 @@ static int testthread (void *name) return *(int *) name + 1; } - static void sched_init (void) { int i;