linux/drivers/watchdog/da9052_wdt.c

// SPDX-License-Identifier: GPL-2.0+
/*
 * System monitoring driver for DA9052 PMICs.
 *
 * Copyright(c) 2012 Dialog Semiconductor Ltd.
 *
 * Author: Anthony Olech <[email protected]>
 *
 */

#include <linux/module.h>
#include <linux/delay.h>
#include <linux/uaccess.h>
#include <linux/platform_device.h>
#include <linux/time.h>
#include <linux/watchdog.h>
#include <linux/types.h>
#include <linux/kernel.h>
#include <linux/jiffies.h>

#include <linux/mfd/da9052/reg.h>
#include <linux/mfd/da9052/da9052.h>

#define DA9052_DEF_TIMEOUT
#define DA9052_TWDMIN

struct da9052_wdt_data {};

static const struct {} da9052_wdt_maps[] =;


static int da9052_wdt_set_timeout(struct watchdog_device *wdt_dev,
				  unsigned int timeout)
{}

static int da9052_wdt_start(struct watchdog_device *wdt_dev)
{}

static int da9052_wdt_stop(struct watchdog_device *wdt_dev)
{}

static int da9052_wdt_ping(struct watchdog_device *wdt_dev)
{}

static const struct watchdog_info da9052_wdt_info =;

static const struct watchdog_ops da9052_wdt_ops =;


static int da9052_wdt_probe(struct platform_device *pdev)
{}

static struct platform_driver da9052_wdt_driver =;

module_platform_driver();

MODULE_AUTHOR();
MODULE_DESCRIPTION();
MODULE_LICENSE();
MODULE_ALIAS();