Home
last modified time | relevance | path

Searched refs:le_csel (Results 1 – 1 of 1) sorted by relevance

/linux/drivers/regulator/
H A Drt6190-regulator.c153 __le16 le_csel; in rt6190_out_set_current_limit() local
165 le_csel = cpu_to_le16(csel); in rt6190_out_set_current_limit()
167 return regmap_raw_write(regmap, RT6190_REG_OUTC, &le_csel, in rt6190_out_set_current_limit()
168 sizeof(le_csel)); in rt6190_out_set_current_limit()
174 __le16 le_csel; in rt6190_out_get_current_limit() local
177 ret = regmap_raw_read(regmap, RT6190_REG_OUTC, &le_csel, in rt6190_out_get_current_limit()
178 sizeof(le_csel)); in rt6190_out_get_current_limit()
182 csel = le16_to_cpu(le_csel); in rt6190_out_get_current_limit()