Lines Matching refs:temp
79 s16 temp[4]; member
85 int temp = reg & ~0xf; in temp_from_s16() local
87 return (temp * 1000 + 128) / 256; in temp_from_s16()
93 int temp = reg & ~0xf; in temp_from_u16() local
96 temp -= 64 * 256; in temp_from_u16()
98 return (temp * 1000 + 128) / 256; in temp_from_u16()
114 data->temp[i] = i2c_smbus_read_byte_data(client, in tmp421_update_device()
116 data->temp[i] |= i2c_smbus_read_byte_data(client, in tmp421_update_device()
133 int temp; in show_temp_value() local
137 temp = temp_from_u16(data->temp[index]); in show_temp_value()
139 temp = temp_from_s16(data->temp[index]); in show_temp_value()
142 return sprintf(buf, "%d\n", temp); in show_temp_value()
155 if (data->temp[index] & 0x01) in show_fault()