diff options
author | 2024-01-23 09:46:54 -0800 | |
---|---|---|
committer | 2024-01-26 10:33:20 +0100 | |
commit | dd3c33ccbb8f0dc6a256dc55e7607569aea69721 (patch) | |
tree | 77c4b5a6ceff0e218c651368ba053be1cc6ca83c /arch/mips/bcm63xx/timer.c | |
parent | MIPS: sgi-ip32: Fix missing prototypes (diff) | |
download | wireguard-linux-dd3c33ccbb8f0dc6a256dc55e7607569aea69721.tar.xz wireguard-linux-dd3c33ccbb8f0dc6a256dc55e7607569aea69721.zip |
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>
Diffstat (limited to '')
-rw-r--r-- | arch/mips/bcm63xx/timer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/bcm63xx/timer.c b/arch/mips/bcm63xx/timer.c index a86065854c0c..74b83807df30 100644 --- a/arch/mips/bcm63xx/timer.c +++ b/arch/mips/bcm63xx/timer.c @@ -178,7 +178,7 @@ int bcm63xx_timer_set(int id, int monotonic, unsigned int countdown_us) EXPORT_SYMBOL(bcm63xx_timer_set); -int bcm63xx_timer_init(void) +static int bcm63xx_timer_init(void) { int ret, irq; u32 reg; |