swh:1:snp:c3bf2749e3476071fa748f67b0ffa2fdc5fe49d9
Raw File
Tip revision: af2d861d4cd2a4da5137f795ee3509e6f944a25b authored by Linus Torvalds on 24 April 2022, 21:51:22 UTC
Linux 5.18-rc4
Tip revision: af2d861
fxls8962af.h
/* 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,
};

int fxls8962af_core_probe(struct device *dev, struct regmap *regmap, int irq);
int fxls8962af_core_remove(struct device *dev);

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_ */
back to top