Fix some Doxygen warnings and/or typos (trivial).

Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>



git-svn-id: svn://svn.coreboot.org/coreboot/trunk@3538 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
This commit is contained in:
Uwe Hermann
2008-08-26 19:37:37 +00:00
parent 1d129fe2db
commit 54ec0afc1c
3 changed files with 13 additions and 6 deletions

View File

@ -35,10 +35,12 @@ extern void i386_do_exec(long addr, int argc, char **argv, int *ret);
#endif
/**
* Execute code in memory
* Execute code in memory.
*
* @param ptr The entry point to jump to
* @return Return the return value from the entry point
* @param addr TODO
* @param argc TODO
* @param argv TODO
* @return Return the return value from the entry point.
*/
int exec(long addr, int argc, char **argv)
{