1 #ifndef LINUX_BCM47XX_PRIVATE_H_ 2 #define LINUX_BCM47XX_PRIVATE_H_ 3 4 #include <linux/kernel.h> 5 6 /* prom.c */ 7 void __init bcm47xx_prom_highmem_init(void); 8 9 /* sprom.c */ 10 void bcm47xx_sprom_register_fallbacks(void); 11 12 /* buttons.c */ 13 int __init bcm47xx_buttons_register(void); 14 15 /* leds.c */ 16 void __init bcm47xx_leds_register(void); 17 18 /* setup.c */ 19 void __init bcm47xx_bus_setup(void); 20 21 /* workarounds.c */ 22 void __init bcm47xx_workarounds(void); 23 24 #endif 25