summaryrefslogtreecommitdiff
path: root/drivers/iio/accel/bmi088-accel.h
blob: 5d40c7cf1cbcac395045b0b0650c7c1629bc2116 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef BMI088_ACCEL_H
#define BMI088_ACCEL_H

#include <linux/pm.h>
#include <linux/regmap.h>
#include <linux/types.h>

struct device;

extern const struct regmap_config bmi088_regmap_conf;
extern const struct dev_pm_ops bmi088_accel_pm_ops;

int bmi088_accel_core_probe(struct device *dev, struct regmap *regmap, int irq,
			    const char *name, bool block_supported);
void bmi088_accel_core_remove(struct device *dev);

#endif /* BMI088_ACCEL_H */