watchdog: Fix rounding bug in get_sample_period()
[pandora-kernel.git] / kernel / watchdog.c
index 14733d4..a06972d 100644 (file)
@@ -110,7 +110,7 @@ static unsigned long get_sample_period(void)
         * increment before the hardlockup detector generates
         * a warning
         */
-       return softlockup_thresh / 5 * NSEC_PER_SEC;
+       return softlockup_thresh * (NSEC_PER_SEC / 5);
 }
 
 /* Commands for resetting the watchdog */