bcm47xx_private.h 447 B

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