Lines Matching +full:60 +full:v
6 * Author: Vadim V. Vlasov <vvlasov@dev.rtsoft.ru>
111 #define MIN_TIMEOUT (1 * 60)
112 #define MAX_TIMEOUT (255 * 60)
315 volt *= 2; /* 0.002V scale */ in nct7904_read_in()
317 volt *= 6; /* 0.006V scale */ in nct7904_read_in()
327 volt *= 2; /* 0.002V scale */ in nct7904_read_in()
329 volt *= 6; /* 0.006V scale */ in nct7904_read_in()
339 volt *= 2; /* 0.002V scale */ in nct7904_read_in()
341 volt *= 6; /* 0.006V scale */ in nct7904_read_in()
645 val = val / 2; /* 0.002V scale */ in nct7904_write_in()
647 val = val / 6; /* 0.006V scale */ in nct7904_write_in()
949 * to be: wdt->timeout = timeout / 60 * 60. in nct7904_wdt_set_timeout()
951 * 119 seconds, the actual timeout will be 60 seconds. in nct7904_wdt_set_timeout()
952 * So, wdt->timeout must then be set to 60 seconds. in nct7904_wdt_set_timeout()
954 wdt->timeout = timeout / 60 * 60; in nct7904_wdt_set_timeout()
957 wdt->timeout / 60); in nct7904_wdt_set_timeout()
977 ret = nct7904_write_reg(data, BANK_0, WDT_TIMER_REG, wdt->timeout / 60); in nct7904_wdt_ping()
994 return ret * 60; in nct7904_wdt_get_timeleft()
1149 data->wdt.timeout = WATCHDOG_TIMEOUT * 60; /* Set default timeout */ in nct7904_probe()
1154 watchdog_init_timeout(&data->wdt, timeout * 60, &client->dev); in nct7904_probe()
1182 MODULE_AUTHOR("Vadim V. Vlasov <vvlasov@dev.rtsoft.ru>");