Re: [PATCH v2] regulator: add new regulator driver for lp872x

From: Axel Lin
Date: Fri Jun 15 2012 - 10:51:01 EST


> +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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/