diff options
author | Alexey Dobriyan <adobriyan@gmail.com> | 2009-02-12 13:42:41 +0300 |
---|---|---|
committer | Wim Van Sebroeck <wim@iguana.be> | 2009-03-05 13:59:05 +0000 |
commit | b02c387892fc6b3cc59c78ab2f79413d55f50190 (patch) | |
tree | 66712ea5c5244fc2e5ca6d0ca3d8cc2ea83c003f /drivers | |
parent | d9a8798c4bab5ccd40e45e011f668099cfb3eb83 (diff) | |
download | op-kernel-dev-b02c387892fc6b3cc59c78ab2f79413d55f50190.zip op-kernel-dev-b02c387892fc6b3cc59c78ab2f79413d55f50190.tar.gz |
[WATCHDOG] ks8695_wdt.c: 'CLOCK_TICK_RATE' undeclared
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>
Cc: stable <stable@kernel.org>
Diffstat (limited to 'drivers')
-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 0b798fd..74c92d3 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 */ |