diff options
author | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2024-01-19 14:32:16 +0100 |
---|---|---|
committer | Thomas Bogendoerfer <tsbogend@alpha.franken.de> | 2024-01-22 11:11:49 +0100 |
commit | f134bd1ebc28d40010328e5b314e10575e3550e0 (patch) | |
tree | 99ccfeccaa6c639e2bce88301e3b0364a4674f47 /arch/mips/sgi-ip27/ip27-common.h | |
parent | feab19143a1c8c5efdf1934dd0b1defb29bb5026 (diff) | |
download | lwn-f134bd1ebc28d40010328e5b314e10575e3550e0.tar.gz lwn-f134bd1ebc28d40010328e5b314e10575e3550e0.zip |
MIPS: sgi-ip27: Fix missing prototypes
Fix missing prototypes by making not shared functions static and
adding others to ip27-common.h. Also drop ip27-hubio.c as it's
not used for a long time.
Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Reviewed-by: Florian Fainelli <f.fainelli@gmail.com>
Diffstat (limited to 'arch/mips/sgi-ip27/ip27-common.h')
-rw-r--r-- | arch/mips/sgi-ip27/ip27-common.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/mips/sgi-ip27/ip27-common.h b/arch/mips/sgi-ip27/ip27-common.h index ed008a08464c..a0059fa13934 100644 --- a/arch/mips/sgi-ip27/ip27-common.h +++ b/arch/mips/sgi-ip27/ip27-common.h @@ -10,6 +10,7 @@ extern void hub_rt_clock_event_init(void); extern void hub_rtc_init(nasid_t nasid); extern void install_cpu_nmi_handler(int slice); extern void install_ipi(void); +extern void ip27_be_init(void); extern void ip27_reboot_setup(void); extern const struct plat_smp_ops ip27_smp_ops; extern unsigned long node_getfirstfree(nasid_t nasid); @@ -17,4 +18,5 @@ extern void per_cpu_init(void); extern void replicate_kernel_text(void); extern void setup_replication_mask(void); + #endif /* __IP27_COMMON_H */ |