#include <linux/delay.h>
#include <linux/err.h>
#include <linux/gpio/consumer.h>
#include <linux/mod_devicetable.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/property.h>
#include <linux/watchdog.h>
static bool nowayout = … WATCHDOG_NOWAYOUT;
module_param(nowayout, bool, 0);
MODULE_PARM_DESC(…) …;
#define SOFT_TIMEOUT_MIN …
#define SOFT_TIMEOUT_DEF …
enum { … };
struct gpio_wdt_priv { … };
static void gpio_wdt_disable(struct gpio_wdt_priv *priv)
{ … }
static int gpio_wdt_ping(struct watchdog_device *wdd)
{ … }
static int gpio_wdt_start(struct watchdog_device *wdd)
{ … }
static int gpio_wdt_stop(struct watchdog_device *wdd)
{ … }
static const struct watchdog_info gpio_wdt_ident = …;
static const struct watchdog_ops gpio_wdt_ops = …;
static int gpio_wdt_probe(struct platform_device *pdev)
{ … }
static const struct of_device_id gpio_wdt_dt_ids[] = …;
MODULE_DEVICE_TABLE(of, gpio_wdt_dt_ids);
static struct platform_driver gpio_wdt_driver = …;
#ifdef CONFIG_GPIO_WATCHDOG_ARCH_INITCALL
static int __init gpio_wdt_init(void)
{ … }
arch_initcall(gpio_wdt_init);
#else
module_platform_driver(gpio_wdt_driver);
#endif
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;