X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;f=common%2Fexports.c;h=333107c74c3c68f9244eea3cdbd44a6f0c1c2802;hb=dbdb5abd070163f59901884c672b49c25b1aeea9;hp=0cb4396ea4ae0a73e781729fe0c267bc40e7bc24;hpb=83dc830b1693252d996bda920cd5f3161d7c64a9;p=oweals%2Fu-boot.git diff --git a/common/exports.c b/common/exports.c index 0cb4396ea4..333107c74c 100644 --- a/common/exports.c +++ b/common/exports.c @@ -1,9 +1,11 @@ #include #include +#include +#include DECLARE_GLOBAL_DATA_PTR; -static void dummy(void) +__attribute__((unused)) static void dummy(void) { } @@ -12,28 +14,10 @@ unsigned long get_version(void) return XF_VERSION; } -void jumptable_init (void) -{ - int i; - - gd->jt = (void **) malloc (XF_MAX * sizeof (void *)); - for (i = 0; i < XF_MAX; i++) - gd->jt[i] = (void *) dummy; +#define EXPORT_FUNC(f, a, x, ...) gd->jt->x = f; - gd->jt[XF_get_version] = (void *) get_version; - gd->jt[XF_malloc] = (void *) malloc; - gd->jt[XF_free] = (void *) free; - gd->jt[XF_getenv] = (void *) getenv; - gd->jt[XF_setenv] = (void *) setenv; - gd->jt[XF_get_timer] = (void *) get_timer; - gd->jt[XF_simple_strtoul] = (void *) simple_strtoul; - gd->jt[XF_udelay] = (void *) udelay; -#if defined(CONFIG_I386) || defined(CONFIG_PPC) - gd->jt[XF_install_hdlr] = (void *) irq_install_handler; - gd->jt[XF_free_hdlr] = (void *) irq_free_handler; -#endif /* I386 || PPC */ -#if (CONFIG_COMMANDS & CFG_CMD_I2C) - gd->jt[XF_i2c_write] = (void *) i2c_write; - gd->jt[XF_i2c_read] = (void *) i2c_read; -#endif /* CFG_CMD_I2C */ +void jumptable_init(void) +{ + gd->jt = malloc(sizeof(struct jt_funcs)); +#include <_exports.h> }