Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=e78a77c38cf0ce3b8169ff6a6fd3711e81dc22c8
Commit:     e78a77c38cf0ce3b8169ff6a6fd3711e81dc22c8
Parent:     531021f2ca681faf58f926771f85bb5c76f13eba
Author:     Andres Salomon <[EMAIL PROTECTED]>
AuthorDate: Sat Feb 9 23:24:08 2008 +0100
Committer:  Thomas Gleixner <[EMAIL PROTECTED]>
CommitDate: Sat Feb 9 23:24:08 2008 +0100

    x86: GEODE: MFGPT: Minor cleanups
    
    - uninline timer functions; the compiler knows better than we do
      whether or not to inline these.
    - mfgpt_start_timer() had an unused 'clock' argument, drop it.
    
    From both Jordan and myself.
    
    Signed-off-by: Jordan Crouse <[EMAIL PROTECTED]>
    Signed-off-by: Andres Salomon <[EMAIL PROTECTED]>
    Signed-off-by: Ingo Molnar <[EMAIL PROTECTED]>
    Signed-off-by: Thomas Gleixner <[EMAIL PROTECTED]>
---
 arch/x86/kernel/mfgpt_32.c |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/arch/x86/kernel/mfgpt_32.c b/arch/x86/kernel/mfgpt_32.c
index 219f86e..9146b2d 100644
--- a/arch/x86/kernel/mfgpt_32.c
+++ b/arch/x86/kernel/mfgpt_32.c
@@ -244,7 +244,7 @@ static int __init mfgpt_setup(char *str)
 }
 __setup("mfgpt_irq=", mfgpt_setup);
 
-static inline void mfgpt_disable_timer(u16 clock)
+static void mfgpt_disable_timer(u16 clock)
 {
        u16 val = geode_mfgpt_read(clock, MFGPT_REG_SETUP);
        geode_mfgpt_write(clock, MFGPT_REG_SETUP, val & ~MFGPT_SETUP_CNTEN);
@@ -263,7 +263,7 @@ static struct clock_event_device mfgpt_clockevent = {
        .shift = 32
 };
 
-static inline void mfgpt_start_timer(u16 clock, u16 delta)
+static void mfgpt_start_timer(u16 delta)
 {
        geode_mfgpt_write(mfgpt_event_clock, MFGPT_REG_CMP2, (u16) delta);
        geode_mfgpt_write(mfgpt_event_clock, MFGPT_REG_COUNTER, 0);
@@ -278,14 +278,14 @@ static void mfgpt_set_mode(enum clock_event_mode mode,
        mfgpt_disable_timer(mfgpt_event_clock);
 
        if (mode == CLOCK_EVT_MODE_PERIODIC)
-               mfgpt_start_timer(mfgpt_event_clock, MFGPT_PERIODIC);
+               mfgpt_start_timer(MFGPT_PERIODIC);
 
        mfgpt_tick_mode = mode;
 }
 
 static int mfgpt_next_event(unsigned long delta, struct clock_event_device 
*evt)
 {
-       mfgpt_start_timer(mfgpt_event_clock, delta);
+       mfgpt_start_timer(delta);
        return 0;
 }
 
-
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