#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/of_platform.h>
#include <linux/module.h>
#include <linux/reboot.h>
static int restart_poweroff_do_poweroff(struct sys_off_data *data)
{ … }
static int restart_poweroff_probe(struct platform_device *pdev)
{ … }
static const struct of_device_id of_restart_poweroff_match[] = …;
MODULE_DEVICE_TABLE(of, of_restart_poweroff_match);
static struct platform_driver restart_poweroff_driver = …;
module_platform_driver(…) …;
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_ALIAS(…) …;