aboutsummaryrefslogtreecommitdiff
path: root/src/lib/ramtest.c
diff options
context:
space:
mode:
authorMartin Roth <martin.roth@se-eng.com>2015-01-04 16:47:39 -0700
committerMartin Roth <gaumless@gmail.com>2015-01-06 06:33:25 +0100
commit5f066b29ce993c0fd67fc8b6ab156a0a0fa02c6c (patch)
treec5381d22bf4c0f3da053101bbaade1b6f5610f55 /src/lib/ramtest.c
parentd63dbe8ef9455c546571585f9dbfa82243fb81f0 (diff)
doxygen fixes: change @var to @param var
These files were trying to document the parameters, but didn't have the syntax quite right. Change the comments from @varname to @param varname as required by doxygen. Change-Id: I63662094d3f1686e3e35b61925b580eb06e72e28 Signed-off-by: Martin Roth <martin.roth@se-eng.com> Reviewed-on: http://review.coreboot.org/8100 Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com> Tested-by: build bot (Jenkins) Reviewed-by: Alexandru Gagniuc <mr.nuke.me@gmail.com>
Diffstat (limited to 'src/lib/ramtest.c')
-rw-r--r--src/lib/ramtest.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/ramtest.c b/src/lib/ramtest.c
index e9173fa7e6..03c4aa7d78 100644
--- a/src/lib/ramtest.c
+++ b/src/lib/ramtest.c
@@ -52,9 +52,9 @@ static void phys_memory_barrier(void)
* memory bus. To test most address lines, addresses are scattered
* using 256B, 4kB and 64kB increments.
*
- * @idx Index to test pattern (0=<idx<0x400)
- * @addr Memory to access on @idx
- * @value Value to write or read at @addr
+ * @param idx Index to test pattern (0=<idx<0x400)
+ * @param addr Memory to access on idx
+ * @param value Value to write or read at addr
*/
static inline void test_pattern(unsigned short int idx,
unsigned long *addr, unsigned long *value)
@@ -74,7 +74,7 @@ static inline void test_pattern(unsigned short int idx,
* Simple write-read-verify memory test. See console debug output for
* any dislocated bytes.
*
- * @start System memory offset, aligned to 128bytes
+ * @param start System memory offset, aligned to 128bytes
*/
static int ram_bitset_nodie(unsigned long start)
{