mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 12:28:41 +08:00
4eaf928622
Commit0f3a8c3f34
("iio: Add support for creating IIO devices via configfs") declared but never implemented iio_sw_device_type_configfs_{un}register(). Commitb662f809d4
("iio: core: Introduce IIO software triggers") declared but never implemented iio_sw_trigger_type_configfs_{un}register(). Commita3e0b51884
("iio: accel: add support for FXLS8962AF/FXLS8964AF accelerometers") declared but never implemented fxls8962af_core_remove(). Commit8dedcc3eee
("iio: core: centralize ioctl() calls to the main chardev") declared but never implemented iio_device_ioctl(). Commitd430f3c36c
("iio: imu: inv_mpu6050: Use regmap instead of i2c specific functions") removed inv_mpu6050_write_reg() but not its declaration. Signed-off-by: Yue Haibing <yuehaibing@huawei.com> Link: https://lore.kernel.org/r/20230811095701.35372-1-yuehaibing@huawei.com Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
23 lines
484 B
C
23 lines
484 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,
|
|
};
|
|
|
|
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_ */
|