read_uv           421 drivers/hwmon/ntc_thermistor.c 	pdata->read_uv = ntc_adc_iio_read;
read_uv           561 drivers/hwmon/ntc_thermistor.c 	int read_uv;
read_uv           566 drivers/hwmon/ntc_thermistor.c 	if (data->pdata->read_uv) {
read_uv           567 drivers/hwmon/ntc_thermistor.c 		read_uv = data->pdata->read_uv(data->pdata);
read_uv           568 drivers/hwmon/ntc_thermistor.c 		if (read_uv < 0)
read_uv           569 drivers/hwmon/ntc_thermistor.c 			return read_uv;
read_uv           570 drivers/hwmon/ntc_thermistor.c 		return get_ohm_of_thermistor(data, read_uv);
read_uv           656 drivers/hwmon/ntc_thermistor.c 	if (!pdata->read_uv && !pdata->read_ohm) {
read_uv           662 drivers/hwmon/ntc_thermistor.c 	if (pdata->read_uv && pdata->read_ohm) {
read_uv           665 drivers/hwmon/ntc_thermistor.c 		pdata->read_uv = NULL;
read_uv           668 drivers/hwmon/ntc_thermistor.c 	if (pdata->read_uv && (pdata->pullup_uv == 0 ||
read_uv            39 include/linux/platform_data/ntc_thermistor.h 	int (*read_uv)(struct ntc_thermistor_platform_data *);