#include <linux/init.h>
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/of.h>
#include <linux/nvmem-consumer.h>
#include <linux/platform_device.h>
#include <linux/reboot-mode.h>
struct nvmem_reboot_mode { … };
static int nvmem_reboot_mode_write(struct reboot_mode_driver *reboot,
unsigned int magic)
{ … }
static int nvmem_reboot_mode_probe(struct platform_device *pdev)
{ … }
static const struct of_device_id nvmem_reboot_mode_of_match[] = …;
MODULE_DEVICE_TABLE(of, nvmem_reboot_mode_of_match);
static struct platform_driver nvmem_reboot_mode_driver = …;
module_platform_driver(…) …;
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;