From: Luuk Paulussen Date: Thu, 15 Apr 2010 03:59:10 +0000 (+1200) Subject: [WATCHDOG] fixed book E watchdog period register mask. X-Git-Tag: v3.0~5189^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=0fb06571bbb5c72b4663c20f721323260ea802bf;p=platform%2Fkernel%2Flinux-amlogic.git [WATCHDOG] fixed book E watchdog period register mask. A previous fix changed the WDTP function to use the period directly, rather than subtracting from 63. However the mask generation was not changed, so the mask was coming out as 0. This patch fixes it. Signed-off-by: Luuk Paulussen Signed-off-by: Wim Van Sebroeck --- diff --git a/drivers/watchdog/booke_wdt.c b/drivers/watchdog/booke_wdt.c index 8b724aa..500d383 100644 --- a/drivers/watchdog/booke_wdt.c +++ b/drivers/watchdog/booke_wdt.c @@ -44,7 +44,7 @@ u32 booke_wdt_period = WDT_PERIOD_DEFAULT; #ifdef CONFIG_FSL_BOOKE #define WDTP(x) ((((x)&0x3)<<30)|(((x)&0x3c)<<15)) -#define WDTP_MASK (WDTP(0)) +#define WDTP_MASK (WDTP(0x3f)) #else #define WDTP(x) (TCR_WP(x)) #define WDTP_MASK (TCR_WP_MASK)