xref: /openbmc/linux/drivers/iio/accel/bmi088-accel.h (revision a5d46d9a)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef BMI088_ACCEL_H
3 #define BMI088_ACCEL_H
4 
5 #include <linux/pm.h>
6 #include <linux/regmap.h>
7 #include <linux/types.h>
8 
9 struct device;
10 
11 extern const struct regmap_config bmi088_regmap_conf;
12 extern const struct dev_pm_ops bmi088_accel_pm_ops;
13 
14 int bmi088_accel_core_probe(struct device *dev, struct regmap *regmap, int irq,
15 			    const char *name, bool block_supported);
16 int bmi088_accel_core_remove(struct device *dev);
17 
18 #endif /* BMI088_ACCEL_H */
19