Lines Matching defs:word
263 static int mp2888_write_word_data(struct i2c_client *client, int page, int reg, u16 word)
270 word = DIV_ROUND_CLOSEST(word, MP2888_TEMP_UNIT);
272 word = clamp_val(word, 0, GENMASK(7, 0));
276 word = data->total_curr_resolution ? DIV_ROUND_CLOSEST(word, 8) :
277 DIV_ROUND_CLOSEST(word, 4);
279 word = clamp_val(word, 0, GENMASK(9, 0));
283 word = data->total_curr_resolution ? DIV_ROUND_CLOSEST(word, 4) :
284 DIV_ROUND_CLOSEST(word, 2);
286 word = clamp_val(word, 0, GENMASK(9, 0));
291 return pmbus_write_word_data(client, page, reg, word);