fxls8962af.h 532 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright 2021 Connected Cars A/S
  4. */
  5. #ifndef _FXLS8962AF_H_
  6. #define _FXLS8962AF_H_
  7. struct regmap;
  8. struct device;
  9. enum {
  10. fxls8962af,
  11. fxls8964af,
  12. };
  13. int fxls8962af_core_probe(struct device *dev, struct regmap *regmap, int irq);
  14. int fxls8962af_core_remove(struct device *dev);
  15. extern const struct dev_pm_ops fxls8962af_pm_ops;
  16. extern const struct regmap_config fxls8962af_i2c_regmap_conf;
  17. extern const struct regmap_config fxls8962af_spi_regmap_conf;
  18. #endif /* _FXLS8962AF_H_ */