Lines Matching defs:temp_int
76 s32 temp_int, temp_dec;
95 temp_int = i2c_smbus_read_byte_data(data->client, SBTSI_REG_TEMP_INT);
97 temp_int = i2c_smbus_read_byte_data(data->client, SBTSI_REG_TEMP_INT);
104 temp_int = i2c_smbus_read_byte_data(data->client, SBTSI_REG_TEMP_HIGH_INT);
110 temp_int = i2c_smbus_read_byte_data(data->client, SBTSI_REG_TEMP_LOW_INT);
119 if (temp_int < 0)
120 return temp_int;
124 *val = sbtsi_reg_to_mc(temp_int, temp_dec);
134 u8 temp_int, temp_dec;
150 sbtsi_mc_to_reg(val, &temp_int, &temp_dec);
153 err = i2c_smbus_write_byte_data(data->client, reg_int, temp_int);