Update of /cvsroot/blob/blob/include/blob
In directory usw-pr-cvs1:/tmp/cvs-serv32523/include/blob
Modified Files:
load_kernel.h
Log Message:
move load_kernel to load_kernel.c
Index: load_kernel.h
===================================================================
RCS file: /cvsroot/blob/blob/include/blob/load_kernel.h,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- load_kernel.h 14 Feb 2002 09:59:34 -0000 1.1
+++ load_kernel.h 14 Feb 2002 10:17:59 -0000 1.2
@@ -58,7 +58,6 @@
#define UDEBUG(str, args...)
#else
extern void *fodder_ram_base;
-extern int printf(const char *, ...);
#define UDEBUG(str, args...) printf(str, ## args)
#endif
@@ -72,3 +71,5 @@
/* the first one outputs a string to the serial port, the second a u32 hex # */
inline void ldr_output_string(char *str);
inline void ldr_output_hex(u32 hex);
+
+void load_kernel(blob_status_t *blob_status);
|