diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2009-02-12 13:42:41 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2009-03-16 17:52:48 -0700 |
commit | fe95f32a4b867d05fe4d8c0132015faf3a0b8921 (patch) | |
tree | 36b52da9b059bd917e11a04d96e784c1c7b68c17 | |
parent | eb24b5c0be217093d84d10f6bc852efd72bb7f21 (diff) |
WATCHDOG: ks8695_wdt.c: 'CLOCK_TICK_RATE' undeclared
commit b02c387892fc6b3cc59c78ab2f79413d55f50190 upstream.
On arm-acs5k_tiny:
drivers/watchdog/ks8695_wdt.c:68: error: 'CLOCK_TICK_RATE' undeclared
(first use in this function)
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Signed-off-by: Wim Van Sebroeck <wim@iguana.be>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
-rw-r--r-- | drivers/watchdog/ks8695_wdt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/watchdog/ks8695_wdt.c b/drivers/watchdog/ks8695_wdt.c index 0b798fdaa37..74c92d38411 100644 --- a/drivers/watchdog/ks8695_wdt.c +++ b/drivers/watchdog/ks8695_wdt.c @@ -21,6 +21,7 @@ #include <linux/watchdog.h> #include <linux/io.h> #include <linux/uaccess.h> +#include <mach/timex.h> #include <mach/regs-timer.h> #define WDT_DEFAULT_TIME 5 /* seconds */ |