On Wed, May 22, 2019 at 02:27:28PM -0500, Dan Murphy wrote: > The use of and enablement of the GPIO can be used across devices. > Use the enable_reg in the regulator descriptor for the register to > write. > @@ -263,8 +263,8 @@ static int lm363x_regulator_probe(struct platform_device *pdev) > > if (gpiod) { > cfg.ena_gpiod = gpiod; > - > - ret = regmap_update_bits(regmap, LM3632_REG_BIAS_CONFIG, > + ret = regmap_update_bits(regmap, > + lm363x_regulator_desc[id].enable_reg, > LM3632_EXT_EN_MASK, > LM3632_EXT_EN_MASK); > if (ret) { Is it guaranteed that the bitmask for enabling the use of the GPIO is going to be the same for all regulators? The bitmasks for the regulator enable look to be different, and it also looks like this setting might affect multiple regulators since it seems there are multiple enable bits in the same register. If this affects multiple regulators then how's that working at the minute?