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