bcm47xx_private.h 486 B

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