mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

fxls8967af is similar with fxls8962af, the only difference is the device id change to 0x87. Signed-off-by: Han Xu <han.xu@nxp.com> Reviewed-by: Sean Nyekjaer <sean@geanix.com> Signed-off-by: Frank Li <Frank.Li@nxp.com> Link: https://patch.msgid.link/20241115-fxls-v2-4-95f3df9228ed@nxp.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
24 lines
510 B
C
24 lines
510 B
C
/* 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,
|
|
fxls8967af,
|
|
fxls8974cf,
|
|
};
|
|
|
|
int fxls8962af_core_probe(struct device *dev, struct regmap *regmap, int irq);
|
|
|
|
extern const struct dev_pm_ops fxls8962af_pm_ops;
|
|
extern const struct regmap_config fxls8962af_i2c_regmap_conf;
|
|
extern const struct regmap_config fxls8962af_spi_regmap_conf;
|
|
|
|
#endif /* _FXLS8962AF_H_ */
|