From 013c7cfab5fe5b6a54e0cd8614fc60d9f328b85b Mon Sep 17 00:00:00 2001 From: Stefan Reinauer Date: Wed, 8 Apr 2009 07:47:01 +0000 Subject: * commit previously forgotten romfs.txt * fix a copy & paste error in src/lib/romfs.c Signed-off-by: Stefan Reinauer Acked-by: Stefan Reinauer git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4085 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- src/lib/romfs.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/lib') diff --git a/src/lib/romfs.c b/src/lib/romfs.c index 6c638cec7b..b28e5414b7 100644 --- a/src/lib/romfs.c +++ b/src/lib/romfs.c @@ -237,16 +237,16 @@ int romfs_execute_stage(const char *name) } /** - * * run_address is passed the address of a function taking no parameters and - * * jumps to it, returning the result. - * * @param f the address to call as a function. - * * returns value returned by the function. - * */ + * run_address is passed the address of a function taking no parameters and + * jumps to it, returning the result. + * @param f the address to call as a function. + * returns value returned by the function. + */ int run_address(void *f) { - int (*v) (void); - v = f; - return v(); + int (*v) (void); + v = f; + return v(); } -- cgit v1.2.3