Lines Matching refs:regmap
76 struct regmap *regmap; member
106 ret = regmap_update_bits(di->regmap, di->sleep_reg, in fan53555_set_suspend_voltage()
123 regmap_update_bits(di->regmap, di->vol_reg, in fan53555_set_mode()
127 regmap_update_bits(di->regmap, di->vol_reg, VSEL_MODE, 0); in fan53555_set_mode()
141 ret = regmap_read(di->regmap, di->vol_reg, &val); in fan53555_get_mode()
178 return regmap_update_bits(di->regmap, FAN53555_CONTROL, in fan53555_set_ramp()
389 di->regmap = devm_regmap_init_i2c(client, &fan53555_regmap_config); in fan53555_regulator_probe()
390 if (IS_ERR(di->regmap)) { in fan53555_regulator_probe()
392 return PTR_ERR(di->regmap); in fan53555_regulator_probe()
397 ret = regmap_read(di->regmap, FAN53555_ID1, &val); in fan53555_regulator_probe()
404 ret = regmap_read(di->regmap, FAN53555_ID2, &val); in fan53555_regulator_probe()
421 config.regmap = di->regmap; in fan53555_regulator_probe()