bno055.h 327 B

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