#include <linux/bitops.h>
#include <linux/export.h>
#include <linux/regmap.h>
#include <linux/reset-controller.h>
#include <linux/delay.h>
#include "reset.h"
static int qcom_reset(struct reset_controller_dev *rcdev, unsigned long id)
{ … }
static int qcom_reset_set_assert(struct reset_controller_dev *rcdev,
unsigned long id, bool assert)
{ … }
static int qcom_reset_assert(struct reset_controller_dev *rcdev, unsigned long id)
{ … }
static int qcom_reset_deassert(struct reset_controller_dev *rcdev, unsigned long id)
{ … }
const struct reset_control_ops qcom_reset_ops = …;
EXPORT_SYMBOL_GPL(…);