Back to home page

OSCL-LXR

 
 

    


0001 /* SPDX-License-Identifier: GPL-2.0 */
0002 /*
0003  * Copyright 2021 Connected Cars A/S
0004  */
0005 #ifndef _FXLS8962AF_H_
0006 #define _FXLS8962AF_H_
0007 
0008 struct regmap;
0009 struct device;
0010 
0011 enum {
0012     fxls8962af,
0013     fxls8964af,
0014 };
0015 
0016 int fxls8962af_core_probe(struct device *dev, struct regmap *regmap, int irq);
0017 int fxls8962af_core_remove(struct device *dev);
0018 
0019 extern const struct dev_pm_ops fxls8962af_pm_ops;
0020 extern const struct regmap_config fxls8962af_i2c_regmap_conf;
0021 extern const struct regmap_config fxls8962af_spi_regmap_conf;
0022 
0023 #endif              /* _FXLS8962AF_H_ */