w83627hf_wdt.c (8c57a5e7b2820f349c95b8c8393fec1e0f4070d2) w83627hf_wdt.c (85f15cfc213da88d9eb01c943be454328b104f3c)
1/*
2 * w83627hf/thf WDT driver
3 *
4 * (c) Copyright 2013 Guenter Roeck
5 * converted to watchdog infrastructure
6 *
7 * (c) Copyright 2007 Vlad Drukker <vlad@storewiz.com>
8 * added support for W83627THF.

--- 288 unchanged lines hidden (view full) ---

297 * Kernel Interfaces
298 */
299
300static struct watchdog_info wdt_info = {
301 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
302 .identity = "W83627HF Watchdog",
303};
304
1/*
2 * w83627hf/thf WDT driver
3 *
4 * (c) Copyright 2013 Guenter Roeck
5 * converted to watchdog infrastructure
6 *
7 * (c) Copyright 2007 Vlad Drukker <vlad@storewiz.com>
8 * added support for W83627THF.

--- 288 unchanged lines hidden (view full) ---

297 * Kernel Interfaces
298 */
299
300static struct watchdog_info wdt_info = {
301 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
302 .identity = "W83627HF Watchdog",
303};
304
305static struct watchdog_ops wdt_ops = {
305static const struct watchdog_ops wdt_ops = {
306 .owner = THIS_MODULE,
307 .start = wdt_start,
308 .stop = wdt_stop,
309 .set_timeout = wdt_set_timeout,
310 .get_timeleft = wdt_get_time,
311};
312
313static struct watchdog_device wdt_dev = {

--- 172 unchanged lines hidden ---
306 .owner = THIS_MODULE,
307 .start = wdt_start,
308 .stop = wdt_stop,
309 .set_timeout = wdt_set_timeout,
310 .get_timeleft = wdt_get_time,
311};
312
313static struct watchdog_device wdt_dev = {

--- 172 unchanged lines hidden ---