zbits             118 drivers/hwmon/ds1621.c 	u8 zbits;			/* Resolution encoded as number of
zbits             134 drivers/hwmon/ds1621.c static inline u16 DS1621_TEMP_TO_REG(long temp, u8 zbits)
zbits             137 drivers/hwmon/ds1621.c 	temp = DIV_ROUND_CLOSEST(temp * (1 << (8 - zbits)), 1000) << zbits;
zbits             162 drivers/hwmon/ds1621.c 		data->zbits = 7;
zbits             171 drivers/hwmon/ds1621.c 		data->zbits = 7 - resol;
zbits             176 drivers/hwmon/ds1621.c 		data->zbits = 7;
zbits             246 drivers/hwmon/ds1621.c 	data->temp[attr->index] = DS1621_TEMP_TO_REG(val, data->zbits);
zbits             300 drivers/hwmon/ds1621.c 	data->zbits = 7 - resol;
zbits             166 drivers/hwmon/tmp401.c static u16 tmp401_temp_to_register(long temp, u8 config, int zbits)
zbits             174 drivers/hwmon/tmp401.c 	return DIV_ROUND_CLOSEST(temp * (1 << (8 - zbits)), 1000) << zbits;