]>
Commit | Line | Data |
---|---|---|
bedd8403 MF |
1 | /* |
2 | * You do not need to use #ifdef around functions that may not exist | |
3 | * in the final configuration (such as i2c). | |
4 | */ | |
27b207fd WD |
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) | |
f5300ab2 WD |
17 | EXPORT_FUNC(vprintf) |
18 | EXPORT_FUNC(do_reset) | |
d7c2a02d DZ |
19 | EXPORT_FUNC(getenv) |
20 | EXPORT_FUNC(setenv) | |
c74b2108 | 21 | EXPORT_FUNC(forceenv) |
d7c2a02d | 22 | EXPORT_FUNC(simple_strtoul) |
8092fef4 MK |
23 | EXPORT_FUNC(simple_strtol) |
24 | EXPORT_FUNC(strcmp) | |
4f7cb08e WD |
25 | EXPORT_FUNC(i2c_write) |
26 | EXPORT_FUNC(i2c_read) | |
bedd8403 MF |
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) |