aboutsummaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2007-02-04 19:33:21 -0500
committerRalf Baechle <ralf@linux-mips.org>2007-02-06 11:53:22 -0500
commit5868756dcbf4b585c3c485e43fc36844c038cef5 (patch)
tree5563d25fda02e39335a96d97c20917f818edbdef /arch
parent99d233fa9bba1916050dd27d74530342af68b6db (diff)
[MIPS] SMTC: Make a bunch of functions and variables static.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch')
-rw-r--r--arch/mips/kernel/smtc.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/arch/mips/kernel/smtc.c b/arch/mips/kernel/smtc.c
index 1475de8e79b..9251ea82493 100644
--- a/arch/mips/kernel/smtc.c
+++ b/arch/mips/kernel/smtc.c
@@ -67,15 +67,15 @@ unsigned int ipi_timer_latch[NR_CPUS];
67 67
68#define IPIBUF_PER_CPU 4 68#define IPIBUF_PER_CPU 4
69 69
70struct smtc_ipi_q IPIQ[NR_CPUS]; 70static struct smtc_ipi_q IPIQ[NR_CPUS];
71struct smtc_ipi_q freeIPIq; 71static struct smtc_ipi_q freeIPIq;
72 72
73 73
74/* Forward declarations */ 74/* Forward declarations */
75 75
76void ipi_decode(struct smtc_ipi *); 76void ipi_decode(struct smtc_ipi *);
77void post_direct_ipi(int cpu, struct smtc_ipi *pipi); 77static void post_direct_ipi(int cpu, struct smtc_ipi *pipi);
78void setup_cross_vpe_interrupts(void); 78static void setup_cross_vpe_interrupts(void);
79void init_smtc_stats(void); 79void init_smtc_stats(void);
80 80
81/* Global SMTC Status */ 81/* Global SMTC Status */
@@ -190,7 +190,7 @@ void __init sanitize_tlb_entries(void)
190 * Configure shared TLB - VPC configuration bit must be set by caller 190 * Configure shared TLB - VPC configuration bit must be set by caller
191 */ 191 */
192 192
193void smtc_configure_tlb(void) 193static void smtc_configure_tlb(void)
194{ 194{
195 int i,tlbsiz,vpes; 195 int i,tlbsiz,vpes;
196 unsigned long mvpconf0; 196 unsigned long mvpconf0;
@@ -638,7 +638,7 @@ int setup_irq_smtc(unsigned int irq, struct irqaction * new,
638 * the VPE. 638 * the VPE.
639 */ 639 */
640 640
641void smtc_ipi_qdump(void) 641static void smtc_ipi_qdump(void)
642{ 642{
643 int i; 643 int i;
644 644
@@ -749,7 +749,7 @@ void smtc_send_ipi(int cpu, int type, unsigned int action)
749/* 749/*
750 * Send IPI message to Halted TC, TargTC/TargVPE already having been set 750 * Send IPI message to Halted TC, TargTC/TargVPE already having been set
751 */ 751 */
752void post_direct_ipi(int cpu, struct smtc_ipi *pipi) 752static void post_direct_ipi(int cpu, struct smtc_ipi *pipi)
753{ 753{
754 struct pt_regs *kstack; 754 struct pt_regs *kstack;
755 unsigned long tcstatus; 755 unsigned long tcstatus;
@@ -968,7 +968,7 @@ static void ipi_irq_dispatch(void)
968 968
969static struct irqaction irq_ipi; 969static struct irqaction irq_ipi;
970 970
971void setup_cross_vpe_interrupts(void) 971static void setup_cross_vpe_interrupts(void)
972{ 972{
973 if (!cpu_has_vint) 973 if (!cpu_has_vint)
974 panic("SMTC Kernel requires Vectored Interupt support"); 974 panic("SMTC Kernel requires Vectored Interupt support");
@@ -1264,7 +1264,7 @@ void smtc_flush_tlb_asid(unsigned long asid)
1264 * Support for single-threading cache flush operations. 1264 * Support for single-threading cache flush operations.
1265 */ 1265 */
1266 1266
1267int halt_state_save[NR_CPUS]; 1267static int halt_state_save[NR_CPUS];
1268 1268
1269/* 1269/*
1270 * To really, really be sure that nothing is being done 1270 * To really, really be sure that nothing is being done