1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #define LTC2497_ENABLE 0xA0
4 #define LTC2497_CONFIG_DEFAULT LTC2497_ENABLE
5 #define LTC2497_CONVERSION_TIME_MS 150ULL
7 struct ltc2497_chip_info
{
12 struct ltc2497core_driverdata
{
13 struct regulator
*ref
;
15 /* lock to protect against multiple access to the device */
17 const struct ltc2497_chip_info
*chip_info
;
19 int (*result_and_measure
)(struct ltc2497core_driverdata
*ddata
,
20 u8 address
, int *val
);
23 int ltc2497core_probe(struct device
*dev
, struct iio_dev
*indio_dev
);
24 void ltc2497core_remove(struct iio_dev
*indio_dev
);
26 MODULE_IMPORT_NS("LTC2497");