Home | History | Annotate | Download | only in ralink

Lines Matching defs:period

43  * 1. the specified reset period is a positive integer:
48 * 2. the specified reset period is a negative integer:
54 * The reset period is defined by RA_WDOG_DEFAULT_PERIOD
55 * (which can be set via kernel config), or by period passed to
88 * maximum period depends on bus freq
160 aprint_normal_dev(self, "max period %d sec.\n", WDOG_MAX_PERIOD);
212 aprint_normal_dev(self, "%s mode, period %d sec.\n",
245 u_int period = smw->smw_period;
250 ((int)period < 0)) {
252 period = -period;
262 if (period > WDOG_MAX_PERIOD)
265 /* Set the new watchdog reset period in Timer 1 */
266 r = ra_wdog_sec_to_count(period);
273 /* Set the new watchdog service period in Timer 0 */
274 r = ra_wdog_sec_to_count(period) / 2;