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