regulator: da9055: Fix checking wrong value in da9055_gpio_init
Check pdata->gpio_rsel && pdata->gpio_rsel[id] for the case GPI pin is muxed with regulator to select the regulator register set A/B for voltage ramping. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
This commit is contained in:
parent
f6130be652
commit
26cbd30733
@ -501,7 +501,7 @@ static __devinit int da9055_gpio_init(struct da9055_regulator *regulator,
|
||||
goto err;
|
||||
}
|
||||
|
||||
if (pdata->gpio_rsel && pdata->gpio_ren[id]) {
|
||||
if (pdata->gpio_rsel && pdata->gpio_rsel[id]) {
|
||||
char name[18];
|
||||
int gpio_mux = pdata->gpio_rsel[id];
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user