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