1 /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */ 2 3 #ifndef BMI270_H_ 4 #define BMI270_H_ 5 6 #include <linux/regmap.h> 7 #include <linux/iio/iio.h> 8 9 struct device; 10 struct bmi270_data { 11 struct device *dev; 12 struct regmap *regmap; 13 }; 14 15 extern const struct regmap_config bmi270_regmap_config; 16 17 int bmi270_core_probe(struct device *dev, struct regmap *regmap); 18 19 #endif /* BMI270_H_ */ 20