bmi088-accel.h (491B)
1/* SPDX-License-Identifier: GPL-2.0 */ 2#ifndef BMI088_ACCEL_H 3#define BMI088_ACCEL_H 4 5#include <linux/pm.h> 6#include <linux/regmap.h> 7#include <linux/types.h> 8 9struct device; 10 11extern const struct regmap_config bmi088_regmap_conf; 12extern const struct dev_pm_ops bmi088_accel_pm_ops; 13 14int bmi088_accel_core_probe(struct device *dev, struct regmap *regmap, int irq, 15 const char *name, bool block_supported); 16void bmi088_accel_core_remove(struct device *dev); 17 18#endif /* BMI088_ACCEL_H */