#include <linux/delay.h>
#include <linux/io.h>
#include <linux/mfd/syscon.h>
#include <linux/module.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#include <linux/reset-controller.h>
#include <linux/slab.h>
#include <linux/types.h>
#define BERLIN_MAX_RESETS …
#define to_berlin_reset_priv(p) …
struct berlin_reset_priv { … };
static int berlin_reset_reset(struct reset_controller_dev *rcdev,
unsigned long id)
{ … }
static const struct reset_control_ops berlin_reset_ops = …;
static int berlin_reset_xlate(struct reset_controller_dev *rcdev,
const struct of_phandle_args *reset_spec)
{ … }
static int berlin2_reset_probe(struct platform_device *pdev)
{ … }
static const struct of_device_id berlin_reset_dt_match[] = …;
MODULE_DEVICE_TABLE(of, berlin_reset_dt_match);
static struct platform_driver berlin_reset_driver = …;
module_platform_driver(…) …;
MODULE_AUTHOR(…) …;
MODULE_AUTHOR(…) …;
MODULE_DESCRIPTION(…) …;
MODULE_LICENSE(…) …;