We have a number of missing prototypes warnings for the BCM63XX machine, fix those by providing adequate function prototypes. Signed-off-by: Florian Fainelli <f.fainelli@xxxxxxxxx> --- arch/mips/include/asm/mach-bcm63xx/bcm63xx_cpu.h | 8 ++++++++ arch/mips/include/asm/mach-bcm63xx/bcm63xx_timer.h | 1 + arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h | 2 ++ arch/mips/include/asm/mach-bcm63xx/irq.h | 3 +++ 4 files changed, 14 insertions(+) diff --git a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_cpu.h b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_cpu.h index 1cad18e6681d..b9ab5ee1c7b2 100644 --- a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_cpu.h +++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_cpu.h @@ -1065,4 +1065,12 @@ void bcm63xx_machine_halt(void); void bcm63xx_machine_reboot(void); +int bcm63xx_register_devices(void); + +int bcm63xx_rng_register(void); + +int bcm63xx_uart_register(unsigned int id); + +int bcm63xx_wdt_register(void); + #endif /* !BCM63XX_CPU_H_ */ diff --git a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_timer.h b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_timer.h index bcbece793fd8..f920c7274f5e 100644 --- a/arch/mips/include/asm/mach-bcm63xx/bcm63xx_timer.h +++ b/arch/mips/include/asm/mach-bcm63xx/bcm63xx_timer.h @@ -8,5 +8,6 @@ int bcm63xx_timer_set(int id, int monotonic, unsigned int countdown_us); int bcm63xx_timer_enable(int id); int bcm63xx_timer_disable(int id); unsigned int bcm63xx_timer_countdown(unsigned int countdown_us); +int bcm63xx_timer_init(void); #endif /* !BCM63XX_TIMER_H_ */ diff --git a/arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h b/arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h index 830f53f28e3f..7b905c8a424d 100644 --- a/arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h +++ b/arch/mips/include/asm/mach-bcm63xx/board_bcm963xx.h @@ -51,4 +51,6 @@ struct board_info { unsigned long ephy_reset_gpio_flags; }; +int bcm63xx_get_fallback_sprom(struct ssb_bus *bus, struct ssb_sprom *out); + #endif /* ! BOARD_BCM963XX_H_ */ diff --git a/arch/mips/include/asm/mach-bcm63xx/irq.h b/arch/mips/include/asm/mach-bcm63xx/irq.h index b016f0615d5f..cbb92a609835 100644 --- a/arch/mips/include/asm/mach-bcm63xx/irq.h +++ b/arch/mips/include/asm/mach-bcm63xx/irq.h @@ -5,4 +5,7 @@ #define NR_IRQS 128 #define MIPS_CPU_IRQ_BASE 0 +void __dispatch_internal_32(int cpu); +void __dispatch_internal_64(int cpu); + #endif -- 2.34.1