linux/drivers/power/reset/atc260x-poweroff.c

// SPDX-License-Identifier: GPL-2.0+
/*
 * Poweroff & reset driver for Actions Semi ATC260x PMICs
 *
 * Copyright (c) 2020 Cristian Ciocaltea <[email protected]>
 */

#include <linux/delay.h>
#include <linux/mfd/atc260x/core.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/power_supply.h>
#include <linux/reboot.h>
#include <linux/regmap.h>

struct atc260x_pwrc {};

static int atc2603c_do_poweroff(const struct atc260x_pwrc *pwrc, bool restart)
{}

static int atc2609a_do_poweroff(const struct atc260x_pwrc *pwrc, bool restart)
{}

static int atc2603c_init(const struct atc260x_pwrc *pwrc)
{}

static int atc2609a_init(const struct atc260x_pwrc *pwrc)
{}

static int atc260x_pwrc_pm_handler(struct sys_off_data *data)
{}

static int atc260x_pwrc_restart_handler(struct sys_off_data *data)
{}

static int atc260x_pwrc_probe(struct platform_device *pdev)
{}

static struct platform_driver atc260x_pwrc_driver =;

module_platform_driver();

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