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>
This commit is contained in:
Elyes HAOUAS 2020-08-19 21:51:55 +02:00 committed by Patrick Georgi
commit 563fc0889f
27 changed files with 0 additions and 39 deletions

View file

@ -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 */