Lines Matching refs:timeout
38 * TS-4800 supports the following timeout values:
47 * Keep the regmap/timeout map ordered by timeout
50 const int timeout;
81 unsigned int timeout)
87 if (ts4800_wdt_map[i].timeout >= timeout)
91 wdd->timeout = ts4800_wdt_map[i].timeout;
153 wdd->min_timeout = ts4800_wdt_map[0].timeout;
154 wdd->max_timeout = ts4800_wdt_map[MAX_TIMEOUT_INDEX].timeout;
162 * must be called to initialize timeout and feed_val with valid values.
163 * Default to maximum timeout if none, or an invalid one, is provided in
166 if (!wdd->timeout)
167 wdd->timeout = wdd->max_timeout;
168 ts4800_wdt_set_timeout(wdd, wdd->timeout);
182 dev_info(dev, "initialized (timeout = %d sec, nowayout = %d)\n",
183 wdd->timeout, nowayout);