2021-05-06 09:09:35 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
/*
|
|
|
|
* Copyright 2021 Connected Cars A/S
|
|
|
|
*/
|
|
|
|
#ifndef _FXLS8962AF_H_
|
|
|
|
#define _FXLS8962AF_H_
|
|
|
|
|
|
|
|
struct regmap;
|
|
|
|
struct device;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
fxls8962af,
|
|
|
|
fxls8964af,
|
2024-11-15 15:24:00 -05:00
|
|
|
fxls8967af,
|
2024-11-15 15:23:59 -05:00
|
|
|
fxls8974cf,
|
2021-05-06 09:09:35 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
int fxls8962af_core_probe(struct device *dev, struct regmap *regmap, int irq);
|
|
|
|
|
|
|
|
extern const struct dev_pm_ops fxls8962af_pm_ops;
|
2021-12-20 13:51:43 +01:00
|
|
|
extern const struct regmap_config fxls8962af_i2c_regmap_conf;
|
|
|
|
extern const struct regmap_config fxls8962af_spi_regmap_conf;
|
2021-05-06 09:09:35 +02:00
|
|
|
|
|
|
|
#endif /* _FXLS8962AF_H_ */
|