aboutsummaryrefslogtreecommitdiff
path: root/src/include/smp
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2020-08-19 21:51:55 +0200
committerPatrick Georgi <pgeorgi@google.com>2020-09-14 07:09:41 +0000
commit563fc0889fcaee05d104f40d7f22fc27046bbe24 (patch)
tree1e39e353ed0d160e76b08b30abd4cc517d76891f /src/include/smp
parent7c79d8302b7361a11a204131d5661d768feb82ac (diff)
src/include: Drop unneeded empty lines
Change-Id: Ie325541547ea10946f41a8f979d144a06a7e80eb Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/44611 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/include/smp')
-rw-r--r--src/include/smp/atomic.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/include/smp/atomic.h b/src/include/smp/atomic.h
index ed70cb7baa..5e78ae4462 100644
--- a/src/include/smp/atomic.h
+++ b/src/include/smp/atomic.h
@@ -31,7 +31,6 @@ typedef struct { int counter; } atomic_t;
*/
#define atomic_set(v, i) (((v)->counter) = (i))
-
/**
* atomic_inc - increment atomic variable
* @param v: pointer of type atomic_t
@@ -41,7 +40,6 @@ typedef struct { int counter; } atomic_t;
*/
#define atomic_inc(v) (((v)->counter)++)
-
/**
* atomic_dec - decrement atomic variable
* @param v: pointer of type atomic_t
@@ -51,7 +49,6 @@ typedef struct { int counter; } atomic_t;
*/
#define atomic_dec(v) (((v)->counter)--)
-
#endif /* CONFIG_SMP */
#endif /* SMP_ATOMIC_H */