blob: 349a3c5522ff876f5fba77731a53a56a15371e84 [file] [log] [blame]
Mike Frysingerbedd8402009-07-23 16:37:48 -04001/*
2 * You do not need to use #ifdef around functions that may not exist
3 * in the final configuration (such as i2c).
4 */
wdenk27b207f2003-07-24 23:38:38 +00005EXPORT_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)
wdenkf5300ab2003-09-12 15:35:15 +000017EXPORT_FUNC(vprintf)
18EXPORT_FUNC(do_reset)
Detlev Zundeld7c2a022006-09-01 15:00:02 +020019EXPORT_FUNC(getenv)
20EXPORT_FUNC(setenv)
21EXPORT_FUNC(simple_strtoul)
Heiko Schochera7fd0d92011-05-02 21:33:49 +000022EXPORT_FUNC(strict_strtoul)
Martin Krause8092fef2006-12-12 14:26:01 +010023EXPORT_FUNC(simple_strtol)
24EXPORT_FUNC(strcmp)
wdenk4f7cb082003-09-11 23:06:34 +000025EXPORT_FUNC(i2c_write)
26EXPORT_FUNC(i2c_read)
Mike Frysingerbedd8402009-07-23 16:37:48 -040027EXPORT_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)