mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-25 09:39:34 +07:00
11 lines
270 B
C
11 lines
270 B
C
|
#ifndef BMI160_H_
|
||
|
#define BMI160_H_
|
||
|
|
||
|
extern const struct regmap_config bmi160_regmap_config;
|
||
|
|
||
|
int bmi160_core_probe(struct device *dev, struct regmap *regmap,
|
||
|
const char *name, bool use_spi);
|
||
|
void bmi160_core_remove(struct device *dev);
|
||
|
|
||
|
#endif /* BMI160_H_ */
|