commit d1edce71135cc6d98c0a4b5729774542b676e769 Author: sophgo-forum-service <forum_service@sophgo.com> Date: Fri Mar 15 16:07:33 2024 +0800 [fix] recommend using ssh method to clone repo. [fix] fix sensor driver repo branch name.
19 lines
504 B
C
19 lines
504 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#define LTC2497_ENABLE 0xA0
|
|
#define LTC2497_CONFIG_DEFAULT LTC2497_ENABLE
|
|
#define LTC2497_CONVERSION_TIME_MS 150ULL
|
|
|
|
struct ltc2497core_driverdata {
|
|
struct regulator *ref;
|
|
ktime_t time_prev;
|
|
u8 addr_prev;
|
|
int (*result_and_measure)(struct ltc2497core_driverdata *ddata,
|
|
u8 address, int *val);
|
|
};
|
|
|
|
int ltc2497core_probe(struct device *dev, struct iio_dev *indio_dev);
|
|
void ltc2497core_remove(struct iio_dev *indio_dev);
|
|
|
|
MODULE_IMPORT_NS(LTC2497);
|