3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-21 06:35:53 +00:00
2022-12-14 11:30:32 +05:00

14 lines
327 B
C

/* 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