bmi160.h 309 B

123456789101112
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef BMI160_H_
  3. #define BMI160_H_
  4. extern const struct regmap_config bmi160_regmap_config;
  5. int bmi160_core_probe(struct device *dev, struct regmap *regmap,
  6. const char *name, bool use_spi);
  7. void bmi160_core_remove(struct device *dev);
  8. #endif /* BMI160_H_ */