summaryrefslogtreecommitdiff
path: root/arch/mips/bcm63xx/dev-wdt.c
diff options
context:
space:
mode:
authorFlorian Fainelli <f.fainelli@gmail.com>2024-01-23 20:46:54 +0300
committerThomas Bogendoerfer <tsbogend@alpha.franken.de>2024-01-26 12:33:20 +0300
commitdd3c33ccbb8f0dc6a256dc55e7607569aea69721 (patch)
tree77c4b5a6ceff0e218c651368ba053be1cc6ca83c /arch/mips/bcm63xx/dev-wdt.c
parentf64fdde9bc771d7d790e8bcc30a7e03bbe0b1a9f (diff)
downloadlinux-dd3c33ccbb8f0dc6a256dc55e7607569aea69721.tar.xz
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 'arch/mips/bcm63xx/dev-wdt.c')
-rw-r--r--arch/mips/bcm63xx/dev-wdt.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/bcm63xx/dev-wdt.c b/arch/mips/bcm63xx/dev-wdt.c
index 42130914a3c2..302bf7ed5ad5 100644
--- a/arch/mips/bcm63xx/dev-wdt.c
+++ b/arch/mips/bcm63xx/dev-wdt.c
@@ -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].end = wdt_resources[0].start;