mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 20:54:31 +00:00
80729a5493
The spi.h include is no longer included in exports.h, so must be included here. This fixes these errors: In file included from exports.c:41:0: /home/sjg/trunk/src/third_party/u-boot/files/include/_exports.h: In function 'jumptable_init': /home/sjg/trunk/src/third_party/u-boot/files/include/_exports.h:27:1: error: 'spi_init' undeclared (first use in this function) /home/sjg/trunk/src/third_party/u-boot/files/include/_exports.h:27:1: note: each undeclared identifier is reported only once for each function it appears in /home/sjg/trunk/src/third_party/u-boot/files/include/_exports.h:28:1: error: 'spi_setup_slave' undeclared (first use in this function) /home/sjg/trunk/src/third_party/u-boot/files/include/_exports.h:29:1: error: 'spi_free_slave' undeclared (first use in this function) /home/sjg/trunk/src/third_party/u-boot/files/include/_exports.h:30:1: error: 'spi_claim_bus' undeclared (first use in this function) /home/sjg/trunk/src/third_party/u-boot/files/include/_exports.h:31:1: error: 'spi_release_bus' undeclared (first use in this function) /home/sjg/trunk/src/third_party/u-boot/files/include/_exports.h:32:1: error: 'spi_xfer' undeclared (first use in this function) Signed-off-by: Simon Glass <sjg@chromium.org>
43 lines
1,000 B
C
43 lines
1,000 B
C
#include <common.h>
|
|
#include <exports.h>
|
|
#include <spi.h>
|
|
|
|
DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
__attribute__((unused)) static void dummy(void)
|
|
{
|
|
}
|
|
|
|
unsigned long get_version(void)
|
|
{
|
|
return XF_VERSION;
|
|
}
|
|
|
|
/* Reuse _exports.h with a little trickery to avoid bitrot */
|
|
#define EXPORT_FUNC(sym) gd->jt[XF_##sym] = (void *)sym;
|
|
|
|
#if !defined(CONFIG_X86) && !defined(CONFIG_PPC)
|
|
# define install_hdlr dummy
|
|
# define free_hdlr dummy
|
|
#else /* kludge for non-standard function naming */
|
|
# define install_hdlr irq_install_handler
|
|
# define free_hdlr irq_free_handler
|
|
#endif
|
|
#ifndef CONFIG_CMD_I2C
|
|
# define i2c_write dummy
|
|
# define i2c_read dummy
|
|
#endif
|
|
#ifndef CONFIG_CMD_SPI
|
|
# define spi_init dummy
|
|
# define spi_setup_slave dummy
|
|
# define spi_free_slave dummy
|
|
# define spi_claim_bus dummy
|
|
# define spi_release_bus dummy
|
|
# define spi_xfer dummy
|
|
#endif
|
|
|
|
void jumptable_init(void)
|
|
{
|
|
gd->jt = malloc(XF_MAX * sizeof(void *));
|
|
#include <_exports.h>
|
|
}
|