MIPS: BCM63XX: Fix missing prototypes

Most of the symbols for which we do not have a prototype can actually be
made static and for the few that cannot, there is already a declaration
in a header for it.

Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
This commit is contained in:
Florian Fainelli 2024-01-23 09:46:54 -08:00 committed by Thomas Bogendoerfer
parent f64fdde9bc
commit dd3c33ccbb
7 changed files with 7 additions and 6 deletions

View file

@ -702,7 +702,7 @@ static struct ssb_sprom bcm63xx_sprom = {
.boardflags_hi = 0x0000, .boardflags_hi = 0x0000,
}; };
int bcm63xx_get_fallback_sprom(struct ssb_bus *bus, struct ssb_sprom *out) static int bcm63xx_get_fallback_sprom(struct ssb_bus *bus, struct ssb_sprom *out)
{ {
if (bus->bustype == SSB_BUSTYPE_PCI) { if (bus->bustype == SSB_BUSTYPE_PCI) {
memcpy(out, &bcm63xx_sprom, sizeof(struct ssb_sprom)); memcpy(out, &bcm63xx_sprom, sizeof(struct ssb_sprom));

View file

@ -26,7 +26,7 @@ static struct platform_device bcm63xx_rng_device = {
.resource = rng_resources, .resource = rng_resources,
}; };
int __init bcm63xx_rng_register(void) static int __init bcm63xx_rng_register(void)
{ {
if (!BCMCPU_IS_6368()) if (!BCMCPU_IS_6368())
return -ENODEV; return -ENODEV;

View file

@ -10,6 +10,7 @@
#include <linux/kernel.h> #include <linux/kernel.h>
#include <linux/platform_device.h> #include <linux/platform_device.h>
#include <bcm63xx_cpu.h> #include <bcm63xx_cpu.h>
#include <bcm63xx_dev_uart.h>
static struct resource uart0_resources[] = { static struct resource uart0_resources[] = {
{ {

View file

@ -34,7 +34,7 @@ static struct platform_device bcm63xx_wdt_device = {
}, },
}; };
int __init bcm63xx_wdt_register(void) static int __init bcm63xx_wdt_register(void)
{ {
wdt_resources[0].start = bcm63xx_regset_address(RSET_WDT); wdt_resources[0].start = bcm63xx_regset_address(RSET_WDT);
wdt_resources[0].end = wdt_resources[0].start; wdt_resources[0].end = wdt_resources[0].start;

View file

@ -72,7 +72,7 @@ static inline int enable_irq_for_cpu(int cpu, struct irq_data *d,
*/ */
#define BUILD_IPIC_INTERNAL(width) \ #define BUILD_IPIC_INTERNAL(width) \
void __dispatch_internal_##width(int cpu) \ static void __dispatch_internal_##width(int cpu) \
{ \ { \
u32 pending[width / 32]; \ u32 pending[width / 32]; \
unsigned int src, tgt; \ unsigned int src, tgt; \

View file

@ -159,7 +159,7 @@ void __init plat_mem_setup(void)
board_setup(); board_setup();
} }
int __init bcm63xx_register_devices(void) static int __init bcm63xx_register_devices(void)
{ {
/* register gpiochip */ /* register gpiochip */
bcm63xx_gpio_init(); bcm63xx_gpio_init();

View file

@ -178,7 +178,7 @@ int bcm63xx_timer_set(int id, int monotonic, unsigned int countdown_us)
EXPORT_SYMBOL(bcm63xx_timer_set); EXPORT_SYMBOL(bcm63xx_timer_set);
int bcm63xx_timer_init(void) static int bcm63xx_timer_init(void)
{ {
int ret, irq; int ret, irq;
u32 reg; u32 reg;