Lines Matching defs:timeout
67 static unsigned int timeout;
68 module_param(timeout, int, 0);
69 MODULE_PARM_DESC(timeout, "Watchdog timeout in seconds");
80 u64 timeout; /* in clock ticks */
168 unsigned int timeout)
172 wdt->timeout = timeout;
175 * Compute the timeout in clock rate. We use smallest possible
179 dev->timeout = (u64)dev->clk_rate * timeout;
180 do_div(dev->timeout, CNTR_CTRL_PRESCALE_MIN);
211 set_counter_value(dev, CNTR_ID_WDOG, dev->timeout);
298 * Since the timeout in seconds is given as 32 bit unsigned int, and
300 * rate the counter can hold timeout of UINT_MAX seconds.
307 dev->wdt.timeout = WATCHDOG_TIMEOUT;
308 watchdog_init_timeout(&dev->wdt, timeout, &pdev->dev);
313 armada_37xx_wdt_set_timeout(&dev->wdt, dev->wdt.timeout);
324 dev_info(&pdev->dev, "Initial timeout %d sec%s\n",
325 dev->wdt.timeout, nowayout ? ", nowayout" : "");