Lines Matching defs:value
38 static int scmi_hwmon_scale(const struct scmi_sensor_info *sensor, u64 *value)
65 *value *= f;
67 *value = div64_u64(*value, f);
77 u64 value;
79 ret = sensor_ops->reading_get(ph, sensor->id, &value);
83 ret = scmi_hwmon_scale(sensor, &value);
85 *val = value;
143 long value;
147 &value);
149 *temp = value;