Mike Frysinger | bedd840 | 2009-07-23 16:37:48 -0400 | [diff] [blame] | 1 | /* |
| 2 | * You do not need to use #ifdef around functions that may not exist |
| 3 | * in the final configuration (such as i2c). |
| 4 | */ |
wdenk | 27b207f | 2003-07-24 23:38:38 +0000 | [diff] [blame] | 5 | EXPORT_FUNC(get_version) |
| 6 | EXPORT_FUNC(getc) |
| 7 | EXPORT_FUNC(tstc) |
| 8 | EXPORT_FUNC(putc) |
| 9 | EXPORT_FUNC(puts) |
| 10 | EXPORT_FUNC(printf) |
| 11 | EXPORT_FUNC(install_hdlr) |
| 12 | EXPORT_FUNC(free_hdlr) |
| 13 | EXPORT_FUNC(malloc) |
| 14 | EXPORT_FUNC(free) |
| 15 | EXPORT_FUNC(udelay) |
| 16 | EXPORT_FUNC(get_timer) |
wdenk | f5300ab | 2003-09-12 15:35:15 +0000 | [diff] [blame] | 17 | EXPORT_FUNC(vprintf) |
| 18 | EXPORT_FUNC(do_reset) |
Detlev Zundel | d7c2a02 | 2006-09-01 15:00:02 +0200 | [diff] [blame] | 19 | EXPORT_FUNC(getenv) |
| 20 | EXPORT_FUNC(setenv) |
| 21 | EXPORT_FUNC(simple_strtoul) |
Heiko Schocher | a7fd0d9 | 2011-05-02 21:33:49 +0000 | [diff] [blame] | 22 | EXPORT_FUNC(strict_strtoul) |
Martin Krause | 8092fef | 2006-12-12 14:26:01 +0100 | [diff] [blame] | 23 | EXPORT_FUNC(simple_strtol) |
| 24 | EXPORT_FUNC(strcmp) |
wdenk | 4f7cb08 | 2003-09-11 23:06:34 +0000 | [diff] [blame] | 25 | EXPORT_FUNC(i2c_write) |
| 26 | EXPORT_FUNC(i2c_read) |
Mike Frysinger | bedd840 | 2009-07-23 16:37:48 -0400 | [diff] [blame] | 27 | EXPORT_FUNC(spi_init) |
| 28 | EXPORT_FUNC(spi_setup_slave) |
| 29 | EXPORT_FUNC(spi_free_slave) |
| 30 | EXPORT_FUNC(spi_claim_bus) |
| 31 | EXPORT_FUNC(spi_release_bus) |
| 32 | EXPORT_FUNC(spi_xfer) |