Lines Matching refs:timeout
36 * TS-4800 supports the following timeout values:
45 * Keep the regmap/timeout map ordered by timeout
48 const int timeout;
79 unsigned int timeout)
85 if (ts4800_wdt_map[i].timeout >= timeout)
89 wdd->timeout = ts4800_wdt_map[i].timeout;
151 wdd->min_timeout = ts4800_wdt_map[0].timeout;
152 wdd->max_timeout = ts4800_wdt_map[MAX_TIMEOUT_INDEX].timeout;
160 * must be called to initialize timeout and feed_val with valid values.
161 * Default to maximum timeout if none, or an invalid one, is provided in
164 if (!wdd->timeout)
165 wdd->timeout = wdd->max_timeout;
166 ts4800_wdt_set_timeout(wdd, wdd->timeout);
180 dev_info(dev, "initialized (timeout = %d sec, nowayout = %d)\n",
181 wdd->timeout, nowayout);