blob: 64f9fc95cebc95fa01636e62d5415157f986c24c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
#ifndef __BNO055_H__
#define __BNO055_H__
#include <linux/regmap.h>
#include <linux/types.h>
struct device;
int bno055_probe(struct device *dev, struct regmap *regmap,
int xfer_burst_break_thr, bool sw_reset);
extern const struct regmap_config bno055_regmap_config;
#endif
|