#include <linux/cpu.h>
#include <linux/kernel.h>
#include <linux/module.h>
#include <linux/platform_device.h>
#include <linux/pm.h>
#include <linux/regmap.h>
#include <linux/syscore_ops.h>
#define SC27XX_PWR_PD_HW …
#define SC27XX_PWR_OFF_EN …
#define SC27XX_SLP_CTRL …
#define SC27XX_LDO_XTL_EN …
static struct regmap *regmap;
static void sc27xx_poweroff_shutdown(void)
{ … }
static struct syscore_ops poweroff_syscore_ops = …;
static void sc27xx_poweroff_do_poweroff(void)
{ … }
static int sc27xx_poweroff_probe(struct platform_device *pdev)
{ … }
static struct platform_driver sc27xx_poweroff_driver = …;
module_platform_driver(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_AUTHOR(…) …;
MODULE_LICENSE(…) …;