Message ID | 87iosjd6lj.wl%kuninori.morimoto.gx@gmail.com (mailing list archive) |
---|---|
State | Awaiting Upstream |
Headers | show |
On Wed, Feb 12, 2014 at 07:39:07PM -0800, Kuninori Morimoto wrote: > From: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> > > 934624d6e9f0b3d41557c4105c286e8daeaadb4e > (regulator: gpio-regulator: do not open-code counting and access of dt array elements) > removed struct property *prop from of_get_gpio_regulator_config() > but, it is still used on > 0094050d783bbadffe83effef11a0bda901153ce > (regulator: gpio: add gpios-status for DT) Applied, thanks.
diff --git a/drivers/regulator/gpio-regulator.c b/drivers/regulator/gpio-regulator.c index 9fd5561..20248c1 100644 --- a/drivers/regulator/gpio-regulator.c +++ b/drivers/regulator/gpio-regulator.c @@ -136,6 +136,7 @@ static struct gpio_regulator_config * of_get_gpio_regulator_config(struct device *dev, struct device_node *np) { struct gpio_regulator_config *config; + struct property *prop; const char *regtype; int proplen, gpio, i; int ret;