summaryrefslogtreecommitdiff
path: root/include/_exports.h (plain)
blob: 349a3c5522ff876f5fba77731a53a56a15371e84
1/*
2 * You do not need to use #ifdef around functions that may not exist
3 * in the final configuration (such as i2c).
4 */
5EXPORT_FUNC(get_version)
6EXPORT_FUNC(getc)
7EXPORT_FUNC(tstc)
8EXPORT_FUNC(putc)
9EXPORT_FUNC(puts)
10EXPORT_FUNC(printf)
11EXPORT_FUNC(install_hdlr)
12EXPORT_FUNC(free_hdlr)
13EXPORT_FUNC(malloc)
14EXPORT_FUNC(free)
15EXPORT_FUNC(udelay)
16EXPORT_FUNC(get_timer)
17EXPORT_FUNC(vprintf)
18EXPORT_FUNC(do_reset)
19EXPORT_FUNC(getenv)
20EXPORT_FUNC(setenv)
21EXPORT_FUNC(simple_strtoul)
22EXPORT_FUNC(strict_strtoul)
23EXPORT_FUNC(simple_strtol)
24EXPORT_FUNC(strcmp)
25EXPORT_FUNC(i2c_write)
26EXPORT_FUNC(i2c_read)
27EXPORT_FUNC(spi_init)
28EXPORT_FUNC(spi_setup_slave)
29EXPORT_FUNC(spi_free_slave)
30EXPORT_FUNC(spi_claim_bus)
31EXPORT_FUNC(spi_release_bus)
32EXPORT_FUNC(spi_xfer)
33