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.c154 __le16 le_csel; in rt6190_out_set_current_limit() local
166 le_csel = cpu_to_le16(csel); in rt6190_out_set_current_limit()
168 return regmap_raw_write(regmap, RT6190_REG_OUTC, &le_csel, in rt6190_out_set_current_limit()
169 sizeof(le_csel)); in rt6190_out_set_current_limit()
175 __le16 le_csel; in rt6190_out_get_current_limit() local
178 ret = regmap_raw_read(regmap, RT6190_REG_OUTC, &le_csel, in rt6190_out_get_current_limit()
179 sizeof(le_csel)); in rt6190_out_get_current_limit()
183 csel = le16_to_cpu(le_csel); in rt6190_out_get_current_limit()