bcm47xx_private.h (486B)
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 */ 12void __init bcm47xx_prom_highmem_init(void); 13 14/* buttons.c */ 15int __init bcm47xx_buttons_register(void); 16 17/* leds.c */ 18void __init bcm47xx_leds_register(void); 19 20/* setup.c */ 21void __init bcm47xx_bus_setup(void); 22 23/* workarounds.c */ 24void __init bcm47xx_workarounds(void); 25 26#endif