Lines Matching refs:wdtdev
41 struct watchdog_device wdtdev; member
69 selector = da9063_wdt_timeout_to_sel(wdt->wdtdev.timeout); in da9063_wdt_start()
173 wdt->wdtdev.info = &da9063_watchdog_info; in da9063_wdt_probe()
174 wdt->wdtdev.ops = &da9063_watchdog_ops; in da9063_wdt_probe()
175 wdt->wdtdev.min_timeout = DA9063_WDT_MIN_TIMEOUT; in da9063_wdt_probe()
176 wdt->wdtdev.max_timeout = DA9063_WDT_MAX_TIMEOUT; in da9063_wdt_probe()
177 wdt->wdtdev.timeout = DA9063_WDG_TIMEOUT; in da9063_wdt_probe()
178 wdt->wdtdev.parent = &pdev->dev; in da9063_wdt_probe()
180 wdt->wdtdev.status = WATCHDOG_NOWAYOUT_INIT_STATUS; in da9063_wdt_probe()
182 watchdog_set_drvdata(&wdt->wdtdev, wdt); in da9063_wdt_probe()
185 ret = watchdog_register_device(&wdt->wdtdev); in da9063_wdt_probe()
205 watchdog_unregister_device(&wdt->wdtdev); in da9063_wdt_remove()