diff options
author | wdenk <wdenk> | 2003-09-12 15:35:15 +0000 |
---|---|---|
committer | wdenk <wdenk> | 2003-09-12 15:35:15 +0000 |
commit | f5300ab241898c490231e59229e6312aa862ce52 (patch) | |
tree | 92df7780e9c3f85d07eafda8da244e713da1cc3d /include | |
parent | 68ce8957e551d90917dffb0aa64fc7c52ef6061c (diff) | |
download | u-boot-imx-f5300ab241898c490231e59229e6312aa862ce52.zip u-boot-imx-f5300ab241898c490231e59229e6312aa862ce52.tar.gz u-boot-imx-f5300ab241898c490231e59229e6312aa862ce52.tar.bz2 |
Move TRAB burn-in tests to TRAB board directory
Diffstat (limited to 'include')
-rw-r--r-- | include/_exports.h | 2 | ||||
-rw-r--r-- | include/exports.h | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/include/_exports.h b/include/_exports.h index 17cb91b..61dcaaf 100644 --- a/include/_exports.h +++ b/include/_exports.h @@ -10,6 +10,8 @@ EXPORT_FUNC(malloc) EXPORT_FUNC(free) EXPORT_FUNC(udelay) EXPORT_FUNC(get_timer) +EXPORT_FUNC(vprintf) +EXPORT_FUNC(do_reset) #if (CONFIG_COMMANDS & CFG_CMD_I2C) EXPORT_FUNC(i2c_write) EXPORT_FUNC(i2c_read) diff --git a/include/exports.h b/include/exports.h index 84bc56b..3c60dbd 100644 --- a/include/exports.h +++ b/include/exports.h @@ -18,6 +18,8 @@ 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); |