Home
last modified time | relevance | path

Searched refs:temp_raw (Results 1 – 6 of 6) sorted by relevance

/linux/drivers/hwmon/
H A Ddrivetemp.c215 u8 temp_raw; in drivetemp_get_smarttemp() local
242 temp_raw = attr[7]; in drivetemp_get_smarttemp()
246 temp_raw = attr[7]; in drivetemp_get_smarttemp()
253 *temp = temp_raw * 1000; in drivetemp_get_smarttemp()
/linux/drivers/peci/
H A Dcpu.c15 * @temp_raw: where to store the read temperature
21 int peci_temp_read(struct peci_device *device, s16 *temp_raw) in peci_temp_read() argument
29 *temp_raw = peci_request_temp_read(req); in peci_temp_read()
/linux/drivers/power/supply/
H A Dds2781_battery.c193 int temp_raw; in ds2781_get_temperature() local
208 temp_raw = ((val[0]) << 3) | in ds2781_get_temperature()
210 *temp = temp_raw + (temp_raw / 4); in ds2781_get_temperature()
/linux/drivers/iio/pressure/
H A Drohm-bm1390.c212 __be16 temp_raw; in bm1390_read_temp() local
215 ret = regmap_bulk_read(data->regmap, BM1390_REG_TEMP_HI, &temp_raw, in bm1390_read_temp()
216 sizeof(temp_raw)); in bm1390_read_temp()
220 *temp = be16_to_cpu(temp_raw); in bm1390_read_temp()
H A Ddps310.c91 s32 temp_raw; member
512 data->temp_raw = sign_extend32(raw, 23); in dps310_read_temp_ready()
669 t = (s64)data->temp_raw; in dps310_calculate_pressure()
763 t = c0 + ((s64)data->temp_raw * (s64)data->c1); in dps310_calculate_temp()
/linux/include/linux/
H A Dpeci-cpu.h50 int peci_temp_read(struct peci_device *device, s16 *temp_raw);