GNU Linux-libre 6.7.9-gnu
[releases.git] / drivers / iio / imu / bno055 / bno055.h
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 #ifndef __BNO055_H__
3 #define __BNO055_H__
4
5 #include <linux/regmap.h>
6 #include <linux/types.h>
7
8 struct device;
9 int bno055_probe(struct device *dev, struct regmap *regmap,
10                  int xfer_burst_break_thr, bool sw_reset);
11 extern const struct regmap_config bno055_regmap_config;
12
13 #endif