Lines Matching defs:wdtdev
32 struct watchdog_device wdtdev;
102 wdt->wdtdev.info = &pmic_watchdog_info;
103 wdt->wdtdev.ops = &pmic_watchdog_ops;
104 wdt->wdtdev.min_timeout = PMIC_WDT_MIN_TIMEOUT;
105 wdt->wdtdev.max_timeout = PMIC_WDT_MAX_TIMEOUT;
106 wdt->wdtdev.parent = dev;
108 wdt->wdtdev.timeout = PMIC_WDT_DEFAULT_TIMEOUT;
109 watchdog_init_timeout(&wdt->wdtdev, 0, dev);
111 watchdog_set_nowayout(&wdt->wdtdev, nowayout);
112 watchdog_set_drvdata(&wdt->wdtdev, wdt);
114 ret = devm_watchdog_register_device(dev, &wdt->wdtdev);