Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=efaa534ed191662270e3be143c8a038a7492ce8f
Commit:     efaa534ed191662270e3be143c8a038a7492ce8f
Parent:     97aef63c9f403e4a3d07e3da9e468add0cd93385
Author:     Ralf Baechle <[EMAIL PROTECTED]>
AuthorDate: Fri Jul 27 18:39:19 2007 +0100
Committer:  Ralf Baechle <[EMAIL PROTECTED]>
CommitDate: Tue Jul 31 21:35:24 2007 +0100

    [MIPS] SMTC: smtc_timer_broadcast ignores its arguments, make it void.
    
    Signed-off-by: Ralf Baechle <[EMAIL PROTECTED]>
---
 arch/mips/kernel/smtc.c              |    2 +-
 arch/mips/mips-boards/generic/time.c |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/arch/mips/kernel/smtc.c b/arch/mips/kernel/smtc.c
index 2bfb2ee..f2c7aed 100644
--- a/arch/mips/kernel/smtc.c
+++ b/arch/mips/kernel/smtc.c
@@ -876,7 +876,7 @@ void deferred_smtc_ipi(void)
  * Send clock tick to all TCs except the one executing the funtion
  */
 
-void smtc_timer_broadcast(int vpe)
+void smtc_timer_broadcast(void)
 {
        int cpu;
        int myTC = cpu_data[smp_processor_id()].tc_id;
diff --git a/arch/mips/mips-boards/generic/time.c 
b/arch/mips/mips-boards/generic/time.c
index c45d556..d7bff9c 100644
--- a/arch/mips/mips-boards/generic/time.c
+++ b/arch/mips/mips-boards/generic/time.c
@@ -55,7 +55,7 @@ unsigned long cpu_khz;
 
 static int mips_cpu_timer_irq;
 extern int cp0_perfcount_irq;
-extern void smtc_timer_broadcast(int);
+extern void smtc_timer_broadcast(void);
 
 static void mips_timer_dispatch(void)
 {
@@ -131,7 +131,7 @@ irqreturn_t mips_timer_interrupt(int irq, void *dev_id)
                                         (mips_hpt_frequency/HZ));
                        local_timer_interrupt(irq, dev_id);
                }
-               smtc_timer_broadcast(cpu_data[cpu].vpe_id);
+               smtc_timer_broadcast();
        }
 #else /* CONFIG_MIPS_MT_SMTC */
        int r2 = cpu_has_mips_r2;
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to