14 lines · c
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 8struct device;9int bno055_probe(struct device *dev, struct regmap *regmap,10 int xfer_burst_break_thr, bool sw_reset);11extern const struct regmap_config bno055_regmap_config;12 13#endif14