Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=c0ead7e0ff996f0cfa91a73fa674fdca5c05798a
Commit:     c0ead7e0ff996f0cfa91a73fa674fdca5c05798a
Parent:     e8ef92b8dc939cebf0c1fe153e898e5162c2ad05
Author:     Wim Van Sebroeck <[EMAIL PROTECTED]>
AuthorDate: Sun Jun 17 19:34:23 2007 +0000
Committer:  Wim Van Sebroeck <[EMAIL PROTECTED]>
CommitDate: Thu Jul 5 05:31:10 2007 +0000

    [WATCHDOG] at32ap700x_wdt.c - checkpatch.pl-0.05 clean-up's
    
    need space after that ',' (ctx:VxV)
    inline keyword should sit between storage class and type
    
    Signed-off-by: Hans-Christian Egtvedt <[EMAIL PROTECTED]>
    Cc: Haavard Skinnemoen <[EMAIL PROTECTED]>
    Signed-off-by: Wim Van Sebroeck <[EMAIL PROTECTED]>
    Cc: Andrew Morton <[EMAIL PROTECTED]>
---
 drivers/char/watchdog/at32ap700x_wdt.c |   12 ++++++------
 1 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/drivers/char/watchdog/at32ap700x_wdt.c 
b/drivers/char/watchdog/at32ap700x_wdt.c
index 745d38f..8abe1c7 100644
--- a/drivers/char/watchdog/at32ap700x_wdt.c
+++ b/drivers/char/watchdog/at32ap700x_wdt.c
@@ -32,11 +32,11 @@
 #define WDT_CLR                        0x04
 
 #define WDT_BIT(name)          (1 << WDT_##name)
-#define WDT_BF(name,value)     ((value) << WDT_##name)
+#define WDT_BF(name, value)    ((value) << WDT_##name)
 
-#define wdt_readl(dev,reg)                             \
+#define wdt_readl(dev, reg)                            \
        __raw_readl((dev)->regs + WDT_##reg)
-#define wdt_writel(dev,reg,value)                      \
+#define wdt_writel(dev, reg, value)                    \
        __raw_writel((value), (dev)->regs + WDT_##reg)
 
 struct wdt_at32ap700x {
@@ -51,7 +51,7 @@ static struct wdt_at32ap700x *wdt;
 /*
  * Disable the watchdog.
  */
-static void inline at32_wdt_stop(void)
+static inline void at32_wdt_stop(void)
 {
        unsigned long psel = wdt_readl(wdt, CTRL) & WDT_BF(CTRL_PSEL, 0x0f);
        wdt_writel(wdt, CTRL, psel | WDT_BF(CTRL_KEY, 0x55));
@@ -61,7 +61,7 @@ static void inline at32_wdt_stop(void)
 /*
  * Enable and reset the watchdog.
  */
-static void inline at32_wdt_start(void)
+static inline void at32_wdt_start(void)
 {
        /* 0xf is 2^16 divider = 2 sec, 0xe is 2^15 divider = 1 sec */
        unsigned long psel = (wdt->timeout > 1) ? 0xf : 0xe;
@@ -77,7 +77,7 @@ static void inline at32_wdt_start(void)
 /*
  * Pat the watchdog timer.
  */
-static void inline at32_wdt_pat(void)
+static inline void at32_wdt_pat(void)
 {
        wdt_writel(wdt, CLR, 0x42);
 }
-
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