X-Git-Url: https://git.kernelconcepts.de/?p=karo-tx-uboot.git;a=blobdiff_plain;f=include%2Fexports.h;h=6cf31aa5e794c0c6fb186bb6ee3705136cc40a2b;hp=0eaf66e1838f4b6a69a455dbd93c24343ce8a3dd;hb=612404c28a64a6df300642a1550a65dcc8e01f82;hpb=c83bf6a2d00ef846c1fb2b0c60540f03ef203125 diff --git a/include/exports.h b/include/exports.h index 0eaf66e183..6cf31aa5e7 100644 --- a/include/exports.h +++ b/include/exports.h @@ -3,29 +3,33 @@ #ifndef __ASSEMBLY__ -#include - /* These are declarations of exported functions available in C code */ unsigned long get_version(void); int getc(void); int tstc(void); void putc(const char); void puts(const char*); -void printf(const char* fmt, ...); -void install_hdlr(int, interrupt_handler_t*, void*); +int printf(const char* fmt, ...); +void install_hdlr(int, void (*interrupt_handler_t)(void *), void*); void free_hdlr(int); void *malloc(size_t); void free(void*); -void udelay(unsigned long); +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 vprintf(const char *, va_list); +unsigned long simple_strtoul(const char *cp,char **endp,unsigned int base); +int strict_strtoul(const char *cp, unsigned int base, unsigned long *res); +char *getenv (const char *name); +int setenv (const char *varname, const char *varvalue); +long simple_strtol(const char *cp,char **endp,unsigned int base); +int strcmp(const char * cs,const char * ct); +unsigned long ustrtoul(const char *cp, char **endp, unsigned int base); +#if defined(CONFIG_CMD_I2C) int i2c_write (uchar, uint, int , uchar* , int); int i2c_read (uchar, uint, int , uchar* , int); -#endif /* CFG_CMD_I2C */ +#endif -void app_startup(char **); +void app_startup(char * const *); #endif /* ifndef __ASSEMBLY__ */ @@ -37,9 +41,9 @@ enum { XF_MAX }; -#define XF_VERSION 2 +#define XF_VERSION 6 -#if defined(CONFIG_I386) +#if defined(CONFIG_X86) extern gd_t *global_data; #endif