From 24e2e951b91dd2e177f2ff133362e0cc0cf6b505 Mon Sep 17 00:00:00 2001 From: Martin Roth Date: Mon, 29 Dec 2014 22:36:06 -0700 Subject: atomic.h: Fix doxygen errors - @v & @i need to be @param v & @param i - add the @file command Change-Id: Ib4fb609629bc2dfcf1869bdf7a4d4cd9fea283cc Signed-off-by: Martin Roth Reviewed-on: http://review.coreboot.org/8075 Reviewed-by: Edward O'Callaghan Tested-by: build bot (Jenkins) --- src/include/smp/atomic.h | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) (limited to 'src/include/smp/atomic.h') diff --git a/src/include/smp/atomic.h b/src/include/smp/atomic.h index 44be4c5c01..bc50534442 100644 --- a/src/include/smp/atomic.h +++ b/src/include/smp/atomic.h @@ -8,21 +8,25 @@ typedef struct { int counter; } atomic_t; #define ATOMIC_INIT(i) { (i) } +/** + * @file include/smp/atomic.h + */ + /** * atomic_read - read atomic variable - * @v: pointer of type atomic_t + * @param v: pointer of type atomic_t * - * Atomically reads the value of @v. Note that the guaranteed + * Atomically reads the value of v. Note that the guaranteed * useful range of an atomic_t is only 24 bits. */ #define atomic_read(v) ((v)->counter) /** * atomic_set - set atomic variable - * @v: pointer of type atomic_t - * @i: required value + * @param v: pointer of type atomic_t + * @param i: required value * - * Atomically sets the value of @v to @i. Note that the guaranteed + * Atomically sets the value of v to i. Note that the guaranteed * useful range of an atomic_t is only 24 bits. */ #define atomic_set(v,i) (((v)->counter) = (i)) @@ -30,9 +34,9 @@ typedef struct { int counter; } atomic_t; /** * atomic_inc - increment atomic variable - * @v: pointer of type atomic_t + * @param v: pointer of type atomic_t * - * Atomically increments @v by 1. Note that the guaranteed + * Atomically increments v by 1. Note that the guaranteed * useful range of an atomic_t is only 24 bits. */ #define atomic_inc(v) (((v)->counter)++) @@ -40,9 +44,9 @@ typedef struct { int counter; } atomic_t; /** * atomic_dec - decrement atomic variable - * @v: pointer of type atomic_t + * @param v: pointer of type atomic_t * - * Atomically decrements @v by 1. Note that the guaranteed + * Atomically decrements v by 1. Note that the guaranteed * useful range of an atomic_t is only 24 bits. */ #define atomic_dec(v) (((v)->counter)--) -- cgit v1.2.3