]> git.sur5r.net Git - u-boot/blobdiff - include/exports.h
Add support for CATcenter board (based on PPChameleon ME module)
[u-boot] / include / exports.h
index f812f16072c7b1bf1f17ccec95bead84b2646632..0eaf66e1838f4b6a69a455dbd93c24343ce8a3dd 100644 (file)
@@ -1,5 +1,5 @@
-#ifndef __MON_SYS_CALL_H__
-#define __MON_SYS_CALL_H__
+#ifndef __EXPORTS_H__
+#define __EXPORTS_H__
 
 #ifndef __ASSEMBLY__
 
@@ -18,6 +18,12 @@ void *malloc(size_t);
 void free(void*);
 void udelay(unsigned long);
 unsigned long get_timer(unsigned long);
+void vprintf(const char *, va_list);
+void do_reset (void);
+#if (CONFIG_COMMANDS & CFG_CMD_I2C)
+int i2c_write (uchar, uint, int , uchar* , int);
+int i2c_read (uchar, uint, int , uchar* , int);
+#endif /* CFG_CMD_I2C */
 
 void app_startup(char **);
 
@@ -31,10 +37,10 @@ enum {
        XF_MAX
 };
 
-#define XF_VERSION     1
+#define XF_VERSION     2
 
 #if defined(CONFIG_I386)
 extern gd_t *global_data;
 #endif
 
-#endif
+#endif /* __EXPORTS_H__ */