]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
examples: Remove duplicate newlines
authorMarek Vasut <marek.vasut+renesas@mailbox.org>
Sat, 13 Jul 2024 13:19:20 +0000 (15:19 +0200)
committerTom Rini <trini@konsulko.com>
Mon, 15 Jul 2024 18:12:17 +0000 (12:12 -0600)
Drop all duplicate newlines. No functional change.

Signed-off-by: Marek Vasut <marek.vasut+renesas@mailbox.org>
examples/api/glue.c
examples/standalone/sched.c

index 08c21a8cb9c1da23eafeb02d93953a532e84ed00..0aaa82bccb29278d5f4650ce89053bfe895afaa7 100644 (file)
@@ -153,7 +153,6 @@ unsigned long ub_get_timer(unsigned long base)
        return cur;
 }
 
-
 /****************************************************************************
  *
  * devices
index d507163f6f3447369e2428728c61c7797ce1a09c..57ae67e1a5bc39eeb748c226157f95a20ac6470b 100644 (file)
@@ -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;