aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/char
diff options
context:
space:
mode:
authorWim Van Sebroeck <wim@iguana.be>2007-06-17 15:34:23 -0400
committerWim Van Sebroeck <wim@iguana.be>2007-07-05 01:31:10 -0400
commitc0ead7e0ff996f0cfa91a73fa674fdca5c05798a (patch)
tree26e553eb3f10c6b486ae6f2b5dd45cac0e330479 /drivers/char
parente8ef92b8dc939cebf0c1fe153e898e5162c2ad05 (diff)
[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 <hcegtvedt@atmel.com> Cc: Haavard Skinnemoen <hskinnemoen@atmel.com> Signed-off-by: Wim Van Sebroeck <wim@iguana.be> Cc: Andrew Morton <akpm@linux-foundation.org>
Diffstat (limited to 'drivers/char')
-rw-r--r--drivers/char/watchdog/at32ap700x_wdt.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/drivers/char/watchdog/at32ap700x_wdt.c b/drivers/char/watchdog/at32ap700x_wdt.c
index 745d38f25190..8abe1c77ac1f 100644
--- a/drivers/char/watchdog/at32ap700x_wdt.c
+++ b/drivers/char/watchdog/at32ap700x_wdt.c
@@ -32,11 +32,11 @@
32#define WDT_CLR 0x04 32#define WDT_CLR 0x04
33 33
34#define WDT_BIT(name) (1 << WDT_##name) 34#define WDT_BIT(name) (1 << WDT_##name)
35#define WDT_BF(name,value) ((value) << WDT_##name) 35#define WDT_BF(name, value) ((value) << WDT_##name)
36 36
37#define wdt_readl(dev,reg) \ 37#define wdt_readl(dev, reg) \
38 __raw_readl((dev)->regs + WDT_##reg) 38 __raw_readl((dev)->regs + WDT_##reg)
39#define wdt_writel(dev,reg,value) \ 39#define wdt_writel(dev, reg, value) \
40 __raw_writel((value), (dev)->regs + WDT_##reg) 40 __raw_writel((value), (dev)->regs + WDT_##reg)
41 41
42struct wdt_at32ap700x { 42struct wdt_at32ap700x {
@@ -51,7 +51,7 @@ static struct wdt_at32ap700x *wdt;
51/* 51/*
52 * Disable the watchdog. 52 * Disable the watchdog.
53 */ 53 */
54static void inline at32_wdt_stop(void) 54static inline void at32_wdt_stop(void)
55{ 55{
56 unsigned long psel = wdt_readl(wdt, CTRL) & WDT_BF(CTRL_PSEL, 0x0f); 56 unsigned long psel = wdt_readl(wdt, CTRL) & WDT_BF(CTRL_PSEL, 0x0f);
57 wdt_writel(wdt, CTRL, psel | WDT_BF(CTRL_KEY, 0x55)); 57 wdt_writel(wdt, CTRL, psel | WDT_BF(CTRL_KEY, 0x55));
@@ -61,7 +61,7 @@ static void inline at32_wdt_stop(void)
61/* 61/*
62 * Enable and reset the watchdog. 62 * Enable and reset the watchdog.
63 */ 63 */
64static void inline at32_wdt_start(void) 64static inline void at32_wdt_start(void)
65{ 65{
66 /* 0xf is 2^16 divider = 2 sec, 0xe is 2^15 divider = 1 sec */ 66 /* 0xf is 2^16 divider = 2 sec, 0xe is 2^15 divider = 1 sec */
67 unsigned long psel = (wdt->timeout > 1) ? 0xf : 0xe; 67 unsigned long psel = (wdt->timeout > 1) ? 0xf : 0xe;
@@ -77,7 +77,7 @@ static void inline at32_wdt_start(void)
77/* 77/*
78 * Pat the watchdog timer. 78 * Pat the watchdog timer.
79 */ 79 */
80static void inline at32_wdt_pat(void) 80static inline void at32_wdt_pat(void)
81{ 81{
82 wdt_writel(wdt, CLR, 0x42); 82 wdt_writel(wdt, CLR, 0x42);
83} 83}