[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <CAF+7xWnM9Z2eBAiuSidW9AUfo+M4-JHHzN3jgn+1bwH3he3rAQ@mail.gmail.com>
Date: Fri, 15 Jun 2012 22:50:12 +0800
From: Axel Lin <axel.lin@...il.com>
To: "Kim, Milo" <Milo.Kim@...com>
Cc: Mark Brown <broonie@...nsource.wolfsonmicro.com>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"Girdwood, Liam" <lrg@...com>
Subject: Re: [PATCH v2] regulator: add new regulator driver for lp872x
> +static struct regulator_init_data
> +*lp872x_find_regulator_init_data(int idx, struct lp872x *lp)
> +{
> + int i;
> + int base = lp->chipid == LP8725 ? LP8725_ID_BASE : 0;
> + int id = idx + base;
> +
> + for (i = 0 ; i < LP872X_MAX_REGULATORS ; i++)
LP872X_MAX_REGULATORS is 9.
But for LP8720, the LP8720_NUM_REGULATORS is 6.
So this should be:
for (i = 0 ; i < lp->num_regulators ; i++)
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists