| 1 | #include <linux/module.h> |
| 2 | |
| 3 | #define _export(n) \ |
| 4 | void n(void); \ |
| 5 | EXPORT_SYMBOL(n); |
| 6 | |
| 7 | _export(bcm947xx_sbh) |
| 8 | |
| 9 | _export(sb_alp_clock) |
| 10 | _export(sb_attach) |
| 11 | _export(sb_kattach) |
| 12 | _export(sb_backplane64) |
| 13 | _export(sb_boardtype) |
| 14 | _export(sb_boardvendor) |
| 15 | _export(sb_btcgpiowar) |
| 16 | _export(sb_bus) |
| 17 | _export(sb_chip) |
| 18 | _export(sb_chiprev) |
| 19 | _export(sb_chipcrev) |
| 20 | _export(sb_chippkg) |
| 21 | _export(sb_clkctl_clk) |
| 22 | _export(sb_clkctl_fast_pwrup_delay) |
| 23 | _export(sb_clkctl_init) |
| 24 | _export(sb_clkctl_xtal) |
| 25 | _export(sb_core_disable) |
| 26 | _export(sb_core_reset) |
| 27 | _export(sb_core_tofixup) |
| 28 | _export(sb_coreflags) |
| 29 | _export(sb_coreflags_wo) |
| 30 | _export(sb_coreflagshi) |
| 31 | _export(sb_coreidx) |
| 32 | _export(sb_coreregs) |
| 33 | _export(sb_corerev) |
| 34 | _export(sb_coreunit) |
| 35 | _export(sb_detach) |
| 36 | _export(sb_deviceremoved) |
| 37 | _export(sb_gpiosetcore) |
| 38 | _export(sb_gpiocontrol) |
| 39 | _export(sb_gpiointmask) |
| 40 | _export(sb_gpiointpolarity) |
| 41 | _export(sb_gpioled) |
| 42 | _export(sb_gpioin) |
| 43 | _export(sb_gpioout) |
| 44 | _export(sb_gpioouten) |
| 45 | _export(sb_gpiopull) |
| 46 | _export(sb_gpiotimerval) |
| 47 | _export(sb_irq) |
| 48 | _export(sb_iscoreup) |
| 49 | _export(sb_pci_setup) |
| 50 | _export(sb_pci_sleep) |
| 51 | _export(sb_pci_down) |
| 52 | _export(sb_pci_up) |
| 53 | _export(sb_pcirev) |
| 54 | _export(sb_pcmcia_init) |
| 55 | _export(sb_pcmciarev) |
| 56 | _export(sb_pmu_paref_ldo_enable) |
| 57 | _export(sb_pmu_rcal) |
| 58 | _export(sb_pmu_set_ldo_voltage) |
| 59 | _export(sb_deregister_intr_callback) |
| 60 | _export(sb_register_intr_callback) |
| 61 | _export(sb_setcore) |
| 62 | _export(sb_setcoreidx) |
| 63 | _export(sb_war16165) |
| 64 | _export(sb_war42780_clkreq) |
| 65 | _export(sb_osh) |
| 66 | |
| 67 | _export(getvar) |
| 68 | _export(getintvar) |
| 69 | |
| 70 | _export(nvram_get) |
| 71 | _export(nvram_getall) |
| 72 | |
| 73 | _export(srom_read) |
| 74 | _export(srom_write) |
| 75 | |
| 76 | |